From 6bb2551cbe6de2547ee50b9455bc0d7965bae7e4 Mon Sep 17 00:00:00 2001 From: Mike Rowland Date: Tue, 7 Aug 2012 14:45:12 -0400 Subject: [PATCH] Various wording changes and fixing of function application bug --- js-runtime/lib/control.js | 17 +- js-runtime/lib/helpers.js | 2 +- js-runtime/lib/primitive.js | 167 +++---- js-runtime/lib/types.js | 24 +- .../collects/bootstrap/autos-teachpack.js | 2 +- .../bootstrap/bootstrap-gtp-teachpack.js | 2 +- .../collects/bootstrap/bootstrap-teachpack.js | 2 +- .../collects/bootstrap/cage-teachpack.js | 2 +- .../collects/bootstrap/function-teachpack.js | 2 +- .../bootstrap2011/bootstrap-common.js | 2 +- .../bootstrap2011/bootstrap-teachpack.js | 2 +- .../collects/bootstrap2011/cage-teachpack.js | 2 +- .../bootstrap2011/function-teachpack.js | 2 +- .../bootstrap2012/bootstrap-common.js | 2 +- .../bootstrap2012/bootstrap-teachpack.js | 2 +- .../bootstrap2012/bootstrap-tilt-teachpack.js | 2 +- .../collects/bootstrap2012/cage-teachpack.js | 2 +- .../bootstrap2012/function-teachpack.js | 2 +- .../collects/jsworld/google-maps.js | 2 +- servlet-htdocs/collects/jsworld/phonegap.js | 2 +- servlet-htdocs/support.js | 210 ++++---- src/compiler/helpers.ss | 193 ++++---- src/compiler/mzscheme-vm/mzscheme-vm.ss | 4 +- tests/test-htdocs/test-main.js | 447 +++++++++--------- 24 files changed, 522 insertions(+), 574 deletions(-) diff --git a/js-runtime/lib/control.js b/js-runtime/lib/control.js index 0b0670c..21cd24f 100644 --- a/js-runtime/lib/control.js +++ b/js-runtime/lib/control.js @@ -872,17 +872,20 @@ var selectProcedureByArity = function(aState, n, procValue, operands) { var argStr = getArgStr('; arguments were:'); var positionStack = state.captureCurrentContinuationMarks(aState).ref(types.symbol('moby-application-position-key')); + console.log("positionStack is ", positionStack); var locationList = positionStack[positionStack.length - 1]; - var exprLoc = positionStack[0].first().elts; - var argColoredParts = getArgColoredParts(locationList.rest()); - - var openParen = [exprLoc[0], exprLoc[1], exprLoc[2], exprLoc[3], 1]; + var locs = locationList; + var exprLoc; + while(!locs.isEmpty()){ + exprLoc = locs.first().elts; + locs = locs.rest(); + } - var closeParen = [exprLoc[0], exprLoc[1] + exprLoc[4] - 1, exprLoc[2], exprLoc[3] + exprLoc[4] - 1, 1]; + var argColoredParts = getArgColoredParts(locationList.rest()); - var op = types.vector(openParen); - var cp = types.vector(closeParen); + var op = types.vector([exprLoc[0], exprLoc[1], exprLoc[2], exprLoc[3], 1]); + var cp = types.vector([exprLoc[0], exprLoc[1] + exprLoc[4] - 1, exprLoc[2], exprLoc[3] + exprLoc[4] - 1, 1]); helpers.raise( types.incompleteExn(types.exnFailContract, diff --git a/js-runtime/lib/helpers.js b/js-runtime/lib/helpers.js index a764927..4a1e8ed 100644 --- a/js-runtime/lib/helpers.js +++ b/js-runtime/lib/helpers.js @@ -9,7 +9,7 @@ var helpers = {}; var format = function(formatStr, args, functionName) { var throwFormatError = function() { - functionName = functionName || '#'; + functionName = functionName || '#'; var matches = formatStr.match(new RegExp('~[sSaA]', 'g')); var expectedNumberOfArgs = matches == null ? 0 : matches.length; var errorStrBuffer = [functionName + ': format string requires ' + expectedNumberOfArgs diff --git a/js-runtime/lib/primitive.js b/js-runtime/lib/primitive.js index 2d9e325..ac5eaaf 100644 --- a/js-runtime/lib/primitive.js +++ b/js-runtime/lib/primitive.js @@ -1446,7 +1446,7 @@ PRIMITIVES['/'] = } raise( types.incompleteExn(types.exnFailContractDivisionByZero, new types.Message([new types.ColoredPart('/', func), - ": division by ", + ": cannot divide by ", new types.ColoredPart("zero", locationList.first())]), []) ); @@ -3183,7 +3183,7 @@ PRIMITIVES['make-string'] = false, false, function(aState, n, c) { check(aState, n, isNatural, 'make-string', 'non-negative exact integer', 1, arguments); - check(aState, c, isChar, 'make-string', 'char', 2, arguments); + check(aState, c, isChar, 'make-string', 'character', 2, arguments); var ret = []; for (var i = 0; jsnums.lessThan(i, n); i++) { @@ -3215,7 +3215,7 @@ PRIMITIVES['string'] = 0, true, false, function(aState, chars) { - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'string', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'string', 'character', i+1, chars);}); var ret = []; for (var i = 0; i < chars.length; i++) { @@ -3539,7 +3539,7 @@ PRIMITIVES['list->string'] = 1, false, false, function(aState, lst) { - checkListOf(aState, lst, isChar, 'list->string', 'char', 1); + checkListOf(aState, lst, isChar, 'list->string', 'character', 1); var ret = []; while( !lst.isEmpty() ) { @@ -3766,7 +3766,7 @@ PRIMITIVES['string-set!'] = check(aState, str, function(x) { return isString(x) && typeof x != 'string'; }, 'string-set!', 'mutable string', 1, arguments); check(aState, k, isNatural, 'string-set!', 'non-negative exact integer', 2, arguments); - check(aState, c, isChar, 'string-set!', 'char', 3, arguments); + check(aState, c, isChar, 'string-set!', 'character', 3, arguments); if ( jsnums.greaterThanOrEqual(k, str.length) ) { var msg = ('string-set!: index ' + n + ' out of range ' + @@ -3786,7 +3786,7 @@ PRIMITIVES['string-fill!'] = function(aState, str, c) { check(aState, str, function(x) { return isString(x) && typeof x != 'string'; }, 'string-fill!', 'mutable string', 1, arguments); - check(aState, c, isChar, 'string-fill!', 'char', 2, arguments); + check(aState, c, isChar, 'string-fill!', 'character', 2, arguments); for (var i = 0; i < str.length; i++) { str.set(i, c.val); @@ -4200,7 +4200,7 @@ PRIMITIVES['char=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) {return c1.val === c2.val;}); }); @@ -4213,7 +4213,7 @@ PRIMITIVES['char?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char>?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char>?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) {return c1.val > c2.val;}); }); @@ -4239,7 +4239,7 @@ PRIMITIVES['char<=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char<=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char<=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) {return c1.val <= c2.val;}); }); @@ -4252,7 +4252,7 @@ PRIMITIVES['char>=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char>=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char>=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) {return c1.val >= c2.val;}); }); @@ -4265,7 +4265,7 @@ PRIMITIVES['char-ci=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) { @@ -4281,7 +4281,7 @@ PRIMITIVES['char-ci?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci>?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci>?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) { @@ -4313,7 +4313,7 @@ PRIMITIVES['char-ci<=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci<=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci<=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) { @@ -4329,7 +4329,7 @@ PRIMITIVES['char-ci>=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci>=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci>=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) { @@ -4343,7 +4343,7 @@ PRIMITIVES['char-alphabetic?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-alphabetic?', 'char', 1); + check(aState, c, isChar, 'char-alphabetic?', 'character', 1); return isAlphabeticString(c.val); }); @@ -4353,7 +4353,7 @@ PRIMITIVES['char-numeric?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-numeric?', 'char', 1); + check(aState, c, isChar, 'char-numeric?', 'character', 1); return (c.val >= '0' && c.val <= '9'); }); @@ -4363,7 +4363,7 @@ PRIMITIVES['char-whitespace?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-whitespace?', 'char', 1); + check(aState, c, isChar, 'char-whitespace?', 'character', 1); return isWhitespaceString(c.val); }); @@ -4373,7 +4373,7 @@ PRIMITIVES['char-upper-case?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-upper-case?', 'char', 1); + check(aState, c, isChar, 'char-upper-case?', 'character', 1); return (isAlphabeticString(c.val) && c.val.toUpperCase() === c.val); }); @@ -4383,7 +4383,7 @@ PRIMITIVES['char-lower-case?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-lower-case?', 'char', 1); + check(aState, c, isChar, 'char-lower-case?', 'character', 1); return (isAlphabeticString(c.val) && c.val.toLowerCase() === c.val); }); @@ -4393,7 +4393,7 @@ PRIMITIVES['char->integer'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char->integer', 'char', 1); + check(aState, c, isChar, 'char->integer', 'character', 1); return c.val.charCodeAt(0); }); @@ -4424,7 +4424,7 @@ PRIMITIVES['char-upcase'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-upcase', 'char', 1); + check(aState, c, isChar, 'char-upcase', 'character', 1); return types['char']( c.val.toUpperCase() ); }); @@ -4434,7 +4434,7 @@ PRIMITIVES['char-downcase'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-downcase', 'char', 1); + check(aState, c, isChar, 'char-downcase', 'character', 1); return types['char']( c.val.toLowerCase() ); }); @@ -4692,7 +4692,7 @@ PRIMITIVES['circle'] = false, false, function(aState, aRadius, aStyle, aColor) { check(aState, aRadius, isNonNegativeReal, "circle", "non-negative number", 1, arguments); - check(aState, aStyle, isMode, "circle", "style", 2, arguments); + check(aState, aStyle, isMode, "circle", 'style ("solid" or "outline")', 2, arguments); check(aState, aColor, isColor, "circle", "color", 3, arguments); @@ -4720,7 +4720,7 @@ PRIMITIVES['star'] = check(aState, inner, isNonNegativeReal, "star", "non-negative number", 3, arguments); - check(aState, m, isMode, "star", "style", 4, arguments); + check(aState, m, isMode, "star", 'style ("solid" or "outline")', 4, arguments); check(aState, c, isColor, "star", "color", 5, arguments); if (colorDb.get(c)) { c = colorDb.get(c); @@ -4738,7 +4738,7 @@ PRIMITIVES['star'] = function(aState, sideLength, mode, color) { check(aState, sideLength, isNonNegativeReal, "star", "non-negative number", 1, arguments); - check(aState, mode, isMode, "star", "style", 2, arguments); + check(aState, mode, isMode, "star", 'style ("solid" or "outline")', 2, arguments); check(aState, color, isColor, "star", "color", 3, arguments); if (colorDb.get(color)) { color = colorDb.get(color); @@ -4763,7 +4763,7 @@ new PrimProc('radial-star', "radial-star", "positive number", 2, arguments); check(aState, anInner, function(x) { return isReal(x) && jsnums.greaterThan(x, 0); }, "radial-star", "positive number", 3, arguments); - check(aState, aStyle, isMode, "radial-star", "style", 4, arguments); + check(aState, aStyle, isMode, "radial-star", 'style ("solid" or "outline")', 4, arguments); check(aState, aColor, isColor, "radial-star", "color", 5, arguments); if (colorDb.get(aColor)) { @@ -4784,7 +4784,7 @@ PRIMITIVES['nw:rectangle'] = function(aState, w, h, s, c) { check(aState, w, isNonNegativeReal, "nw:rectangle", "non-negative number", 1, arguments); check(aState, h, isNonNegativeReal, "nw:rectangle", "non-negative number", 2, arguments); - check(aState, s, isMode, "nw:rectangle", "style", 3, arguments); + check(aState, s, isMode, "nw:rectangle", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "nw:rectangle", "color", 4, arguments); if (colorDb.get(c)) { @@ -4804,7 +4804,7 @@ PRIMITIVES['rectangle'] = function(aState, w, h, s, c) { check(aState, w, isNonNegativeReal, "rectangle", "non-negative number", 1, arguments); check(aState, h, isNonNegativeReal, "rectangle", "non-negative number", 2, arguments); - check(aState, s, isMode, "rectangle", "style", 3, arguments); + check(aState, s, isMode, "rectangle", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "rectangle", "color", 4, arguments); if (colorDb.get(c)) { @@ -4822,7 +4822,7 @@ new PrimProc('regular-polygon', function(aState, length, count, s, c) { check(aState, length, isNonNegativeReal, "regular-polygon", "non-negative number", 1, arguments); check(aState, count, isSideCount, "regular-polygon", "positive integer greater than or equal to 3", 2, arguments); - check(aState, s, isMode, "regular-polygon", "style", 3, arguments); + check(aState, s, isMode, "regular-polygon", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "regular-polygon", "color", 4, arguments); if (colorDb.get(c)) { @@ -4843,7 +4843,7 @@ new PrimProc('star-polygon', check(aState, length, isNonNegativeReal, "star-polygon", "non-negative number", 1, arguments); check(aState, count, isSideCount, "star-polygon", "positive integer greater than or equal to 3", 2, arguments); check(aState, step, isStepCount, "star-polygon", "positive integer greater than or equal to 1", 3, arguments); - check(aState, s, isMode, "star-polygon", "style", 4, arguments); + check(aState, s, isMode, "star-polygon", 'style ("solid" or "outline")', 4, arguments); check(aState, c, isColor, "star-polygon", "color", 5, arguments); if (colorDb.get(c)) { @@ -4863,7 +4863,7 @@ new PrimProc('rhombus', function(aState, l, a, s, c) { check(aState, l, isNonNegativeReal, "rhombus", "non-negative number", 1, arguments); check(aState, a, isNonNegativeReal, "rhombus", "non-negative number", 2, arguments); - check(aState, s, isMode, "rhombus", "style", 3, arguments); + check(aState, s, isMode, "rhombus", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "rhombus", "color", 4, arguments); if (colorDb.get(c)) { @@ -4878,7 +4878,7 @@ new PrimProc('square', false, false, function(aState, l, s, c) { check(aState, l, isNonNegativeReal, "square", "non-negative number", 1, arguments); - check(aState, s, isMode, "square", "style", 2, arguments); + check(aState, s, isMode, "square", 'style ("solid" or "outline")', 2, arguments); check(aState, c, isColor, "square", "color", 3, arguments); if (colorDb.get(c)) { @@ -4893,7 +4893,7 @@ PRIMITIVES['triangle'] = false, false, function(aState, s, m, c) { check(aState, s, isNonNegativeReal, "triangle", "non-negative number", 1, arguments); - check(aState, m, isMode, "triangle", "style", 2, arguments); + check(aState, m, isMode, "triangle", 'style ("solid" or "outline")', 2, arguments); check(aState, c, isColor, "triangle", "color", 3, arguments); if (colorDb.get(c)) { c = colorDb.get(c); @@ -4912,7 +4912,7 @@ new PrimProc('right-triangle', function(aState, side1, side2, s, c) { check(aState, side1, isNonNegativeReal, "right-triangle", "non-negative number", 1, arguments); check(aState, side2, isNonNegativeReal, "right-triangle", "non-negative number", 2, arguments); - check(aState, s, isMode, "right-triangle", "style", 3, arguments); + check(aState, s, isMode, "right-triangle", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "right-triangle", "color", 4, arguments); if (colorDb.get(c)) { c = colorDb.get(c); @@ -4928,7 +4928,7 @@ new PrimProc('isosceles-triangle', function(aState, side, angle, s, c) { check(aState, side, isNonNegativeReal, "isosceles-triangle", "non-negative number", 1, arguments); check(aState, angle, isAngle, "isosceles-triangle", "finite real number between 0 and 360", 2, arguments); - check(aState, s, isMode, "isosceles-triangle", "style", 3, arguments); + check(aState, s, isMode, "isosceles-triangle", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "isosceles-triangle", "color", 4, arguments); if (colorDb.get(c)) { c = colorDb.get(c); @@ -5325,7 +5325,7 @@ new PrimProc('text/font', check(aState, aFace, function(x) {return isString(x) || !x;}, "text/font", "face", 4, arguments); check(aState, aFamily, isFontFamily, "text/font", "family", 5, arguments); - check(aState, aStyle, isFontStyle, "text/font", "style", 6, arguments); + check(aState, aStyle, isFontStyle, "text/font", 'style ("solid" or "outline")', 6, arguments); check(aState, aWeight, isFontWeight, "text/font", "weight", 7, arguments); check(aState, aUnderline,isBoolean, "text/font", "underline?",8, arguments); @@ -5692,7 +5692,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // false, false, // function(aRadius, aStyle, aColor) { // check(aState, aRadius, isNonNegativeReal, "circle", "non-negative number", 1, arguments); -// check(aState, aStyle, isStyle, "circle", "style", 2, arguments); +// check(aState, aStyle, isStyle, "circle", 'style ("solid" or "outline")', 2, arguments); // check(aState, aColor, isColor, "circle", "color", 3, arguments); @@ -5714,7 +5714,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // "star", "positive number", 2, arguments); // check(aState, anInner, function(x) { return isReal(x) && jsnums.greaterThan(x, 0); }, // "star", "positive number", 2, arguments); -// check(aState, aStyle, isStyle, "star", "style", 4, arguments); +// check(aState, aStyle, isStyle, "star", 'style ("solid" or "outline")', 4, arguments); // check(aState, aColor, isColor, "star", "color", 5, arguments); // if (colorDb.get(aColor)) { @@ -5735,7 +5735,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // function(w, h, s, c) { // check(aState, w, isNonNegativeReal, "nw:rectangle", "non-negative number", 1, arguments); // check(aState, h, isNonNegativeReal, "nw:rectangle", "non-negative number", 2, arguments); -// check(aState, s, isStyle, "nw:rectangle", "style", 3, arguments); +// check(aState, s, isStyle, "nw:rectangle", 'style ("solid" or "outline")', 3, arguments); // check(aState, c, isColor, "nw:rectangle", "color", 4, arguments); // if (colorDb.get(c)) { @@ -5755,7 +5755,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // function(w, h, s, c) { // check(aState, w, isNonNegativeReal, "rectangle", "non-negative number", 1, arguments); // check(aState, h, isNonNegativeReal, "rectangle", "non-negative number", 2, arguments); -// check(aState, s, isStyle, "rectangle", "style", 3, arguments); +// check(aState, s, isStyle, "rectangle", 'style ("solid" or "outline")', 3, arguments); // check(aState, c, isColor, "rectangle", "color", 4, arguments); // if (colorDb.get(c)) { @@ -5773,7 +5773,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // false, false, // function(r, s, c) { // check(aState, r, isNonNegativeReal, "triangle", "non-negative number", 1, arguments); -// check(aState, s, isStyle, "triangle", "style", 2, arguments); +// check(aState, s, isStyle, "triangle", 'style ("solid" or "outline")', 2, arguments); // check(aState, c, isColor, "triangle", "color", 3, arguments); // if (colorDb.get(c)) { // c = colorDb.get(c); @@ -5988,7 +5988,7 @@ PRIMITIVES['on-tick'] = 1, false, false, function(aState, f) { - check(aState, f, isFunction, "on-tick", "procedure", 1); + check(aState, f, isFunction, "on-tick", "function name", 1); return new OnTickBang(f, new PrimProc('', 1, false, false, function(aState, w) { return types.effectDoNothing(); }), @@ -5998,7 +5998,7 @@ PRIMITIVES['on-tick'] = 2, false, false, function(aState, f, aDelay) { - check(aState, f, isFunction, "on-tick", "procedure", 1, arguments); + check(aState, f, isFunction, "on-tick", "function name", 1, arguments); check(aState, aDelay, isNonNegativeReal, "on-tick", "non-negative number", 2, arguments); return new OnTickBang(f, new PrimProc('', 1, false, false, @@ -6014,16 +6014,16 @@ PRIMITIVES['on-tick!'] = 2, false, false, function(aState, handler, effectHandler) { - check(aState, handler, isFunction, "on-tick!", "procedure", 1, arguments); - check(aState, effectHandler, isFunction, "on-tick!","procedure", 2, arguments); + check(aState, handler, isFunction, "on-tick!", "function name", 1, arguments); + check(aState, effectHandler, isFunction, "on-tick!","function name", 2, arguments); return new OnTickBang(handler, effectHandler, DEFAULT_TICK_DELAY); }), new PrimProc('on-tick!', 3, false, false, function(aState, handler, effectHandler, aDelay) { - check(aState, handler, isFunction, "on-tick!", "procedure", 1, arguments); - check(aState, effectHandler, isFunction, "on-tick!","procedure", 2, arguments); + check(aState, handler, isFunction, "on-tick!", "function name", 1, arguments); + check(aState, effectHandler, isFunction, "on-tick!","function name", 2, arguments); check(aState, aDelay, isNonNegativeReal, "on-tick!", "non-negative number", 3, arguments); return new OnTickBang(handler, effectHandler, aDelay); }) ]); @@ -6074,7 +6074,7 @@ PRIMITIVES['on-redraw'] = 1, false, false, function(aState, f) { - check(aState, f, isFunction, 'on-redraw', 'procedure', 1); + check(aState, f, isFunction, 'on-redraw', "function name", 1); return new (WorldConfigOption.extend({ init: function() { this._super('on-redraw'); @@ -6092,7 +6092,7 @@ PRIMITIVES['to-draw'] = 1, false, false, function(aState, f) { - check(aState, f, isFunction, 'to-draw', 'procedure', 1); + check(aState, f, isFunction, 'to-draw', "function name", 1); return new (WorldConfigOption.extend({ init: function() { this._super('on-redraw'); @@ -6113,7 +6113,7 @@ PRIMITIVES['on-draw'] = 1, false, false, function(aState, domHandler) { - check(aState, domHandler, isFunction, 'on-draw', 'procedure', 1); + check(aState, domHandler, isFunction, 'on-draw', "function name", 1); return new (WorldConfigOption.extend({ init: function() { this._super('on-draw'); @@ -6127,8 +6127,8 @@ PRIMITIVES['on-draw'] = 2, false, false, function(aState, domHandler, styleHandler) { - check(aState, domHandler, isFunction, 'on-draw', 'procedure', 1, arguments); - check(aState, styleHandler, isFunction, 'on-draw', 'procedure', 2, arguments); + check(aState, domHandler, isFunction, 'on-draw', "function name", 1, arguments); + check(aState, styleHandler, isFunction, 'on-draw', "function name", 2, arguments); return new (WorldConfigOption.extend({ init: function() { this._super('on-draw'); @@ -6200,8 +6200,8 @@ PRIMITIVES['js-div'] = var jsButtonBang = function(funName) { return function(aState, worldUpdateF, effectF, attribList) { - check(aState, worldUpdateF, isFunction, funName, 'procedure', 1); - check(aState, effectF, isFunction, funName, 'procedure', 2); + check(aState, worldUpdateF, isFunction, funName, "function name", 1); + check(aState, effectF, isFunction, funName, "function name", 2); checkListOf(undefined, attribList, isAssocList, funName, '(listof X Y)', 3); var attribs = attribList ? assocListToHash(attribList) : {}; @@ -6233,7 +6233,7 @@ PRIMITIVES['js-button!'] = var jsInput = function(type, updateF, attribList) { check(aState, type, isString, 'js-input', 'string', 1); - check(aState, updateF, isFunction, 'js-input', 'procedure', 2); + check(aState, updateF, isFunction, 'js-input', "function name", 2); checkListOf(undefined, attribList, isAssocList, 'js-input', '(listof X Y)', 3); var attribs = attribList ? assocListToHash(attribList) : {}; @@ -6289,7 +6289,7 @@ PRIMITIVES['js-text'] = var jsSelect = function(optionList, updateF, attribList) { checkListOf(undefined, optionList, isString, 'js-select', 'listof string', 1); - check(aState, updateF, isFunction, 'js-select', 'procedure', 2); + check(aState, updateF, isFunction, 'js-select', "function name", 2); checkListOf(undefined, attribList, isAssocList, 'js-select', '(listof X Y)', 3); var attribs = attribList ? assocListToHash(attribList) : {}; @@ -6307,45 +6307,6 @@ PRIMITIVES['js-select'] = new PrimProc('js-select', 3, false, false, function(aState, optionList, updateF, attribList) { return jsSelect(optionList, updateF, attribList); })]); -/* -PRIMITIVES['big-bang'] = -PRIMITIVES['js-big-bang'] = - new PrimProc('js-big-bang', - 1, - true, true, - function(aState, initW, handlers) { - arrayEach(handlers, - function(x, i) { - check(aState, x, function(y) { return isWorldConfigOption(y) || isList(y) || types.isWorldConfig(y); }, - 'js-big-bang', 'handler or attribute list', i+2); - }); - var unwrappedConfigs = - helpers.map(function(x) { - if ( isWorldConfigOption(x) ) { - return function(config) { return x.configure(config); }; - } - else { - return x; - } - }, - handlers); - aState.v = PAUSE(function(restarter, caller) { - var bigBangController; - var onBreak = function() { - bigBangController.breaker(); - } - aState.addBreakRequestedListener(onBreak); - bigBangController = jsworld.MobyJsworld.bigBang(initW, - aState.getToplevelNodeHook()(), - unwrappedConfigs, - caller, - function(v) { - aState.removeBreakRequestedListener(onBreak); - restarter(v); - }); - }) - }); -*/ PRIMITIVES['big-bang'] = PRIMITIVES['js-big-bang'] = new PrimProc('big-bang', @@ -6355,7 +6316,7 @@ PRIMITIVES['js-big-bang'] = arrayEach(handlers, function(x, i) { check(aState, x, function(y) { return isWorldConfigOption(y) || isList(y) || types.isWorldConfig(y); }, - 'big-bang', 'handler or attribute list', i+2, [aState, initW].concat(handlers)); + 'big-bang', 'handler', i+2, [aState, initW].concat(handlers)); }); var unwrappedConfigs = helpers.map(function(x) { @@ -6438,7 +6399,7 @@ PRIMITIVES['make-world-config'] = true, false, function(aState, startup, shutdown, handlers) { var allArgs = [startup, shutdown].concat(handlers); - check(aState, startup, isFunction, 'make-world-config', 'procedure', 1, allArgs); + check(aState, startup, isFunction, 'make-world-config', "function name", 1, allArgs); check(aState, shutdown, procArityContains(1), 'make-world-config', 'procedure (arity 1)', 2, allArgs); arrayEach(handlers, function(x, i) { check(aState, x, isFunction, 'make-world-config', 'handler', i+3, allArgs); }); @@ -6465,7 +6426,7 @@ PRIMITIVES['make-effect-type'] = check(aState, superType, function(x) { return x === false || types.isEffectType(x) }, 'make-effect-type', 'effect type or #f', 2, userArgs); check(aState, fieldCnt, isNatural, 'make-effect-type', 'exact non-negative integer', 3, userArgs); - check(aState, impl, isFunction, 'make-effect-type', 'procedure', 4, userArgs); + check(aState, impl, isFunction, 'make-effect-type', "function name", 4, userArgs); // checkListOf(aState, handlerIndices, isNatural, 'make-effect-type', 'exact non-negative integer', 5); check(aState, guard, function(x) { return x === false || isFunction(x); }, 'make-effect-type', 'procedure or #f', 6, userArgs); // Check the number of arguments on the guard @@ -6529,7 +6490,7 @@ PRIMITIVES['make-render-effect-type'] = check(aState, superType, function(x) { return x === false || types.isEffectType(x) }, 'make-render-effect-type', 'effect type or #f', 2, userArgs); check(aState, fieldCnt, isNatural, 'make-render-effect-type', 'exact non-negative integer', 3, userArgs); - check(aState, impl, isFunction, 'make-render-effect-type', 'procedure', 4, userArgs); + check(aState, impl, isFunction, 'make-render-effect-type', "function name", 4, userArgs); check(aState, guard, function(x) { return x === false || isFunction(x); }, 'make-render-effect-type', 'procedure or #f', 6, userArgs); // Check the number of arguments on the guard var numberOfGuardArgs = fieldCnt + 1 + (superType ? superType.numberOfArgs : 0); @@ -6681,7 +6642,7 @@ PRIMITIVES['procedure->cps-js-fun'] = 1, false, false, function(aState, proc) { - check(aState, proc, isFunction, 'procedure->cps-js-fun', 'procedure', 1); + check(aState, proc, isFunction, 'procedure->cps-js-fun', "function name", 1); var caller = makeCaller(aState); return types.jsObject(proc.name + ' (cps)', function() { @@ -6698,7 +6659,7 @@ PRIMITIVES['procedure->void-js-fun'] = 1, false, false, function(aState, proc) { - check(aState, proc, isFunction, 'procedure->void-js-fun', 'procedure', 1); + check(aState, proc, isFunction, 'procedure->void-js-fun', "function name", 1); var caller = makeCaller(aState); return types.jsObject(proc.name + ' (void)', function() { diff --git a/js-runtime/lib/types.js b/js-runtime/lib/types.js index 8778fc5..d2599fb 100644 --- a/js-runtime/lib/types.js +++ b/js-runtime/lib/types.js @@ -1592,7 +1592,7 @@ var liftToplevelToFunctionValue = function(primitiveF, return this === other; } lifted.toWrittenString = function(cache) { - return "#"; + return "#"; }; lifted.toDisplayedString = lifted.toWrittenString; lifted.procedureArity = procedureArityDescription; @@ -1672,9 +1672,9 @@ var ClosureValue = function(name, locs, numParams, paramTypes, isRest, closureVa ClosureValue.prototype.toString = function() { if (this.name !== Empty.EMPTY) { - return helpers.format("#", [this.name]); + return helpers.format("#", [this.name]); } else { - return "#"; + return "#"; } }; @@ -1702,9 +1702,9 @@ var ContinuationClosureValue = function(vstack, cstack) { ContinuationClosureValue.prototype.toString = function() { if (this.name !== Empty.EMPTY) { - return helpers.format("#", [this.name]); + return helpers.format("#", [this.name]); } else { - return "#"; + return "#"; } }; @@ -1883,21 +1883,21 @@ var PrimProc = function(name, numParams, isRest, assignsToValueRegister, impl) { }; PrimProc.prototype.toString = function() { - return ("#"); + return ("#"); }; PrimProc.prototype.toWrittenString = function(cache) { - return ("#"); + return ("#"); }; PrimProc.prototype.toDisplayedString = function(cache) { - return ("#"); + return ("#"); }; PrimProc.prototype.toDomNode = function(cache) { var div = document.createElement("span"); - div.appendChild(document.createTextNode("#")); + div.appendChild(document.createTextNode("#")); return div; }; @@ -1910,16 +1910,16 @@ var CasePrimitive = function(name, cases) { CasePrimitive.prototype.toDomNode = function(cache) { var div = document.createElement("span"); - div.appendChild(document.createTextNode("#")); + div.appendChild(document.createTextNode("#")); return div; }; CasePrimitive.prototype.toWrittenString = function(cache) { - return ("#"); + return ("#"); }; CasePrimitive.prototype.toDisplayedString = function(cache) { - return ("#"); + return ("#"); }; diff --git a/servlet-htdocs/collects/bootstrap/autos-teachpack.js b/servlet-htdocs/collects/bootstrap/autos-teachpack.js index 86f09ec..574cab0 100644 --- a/servlet-htdocs/collects/bootstrap/autos-teachpack.js +++ b/servlet-htdocs/collects/bootstrap/autos-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap/autos-teachpack"] = { 'name': "bootstrap/autos-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"auto-ref"},{"$":"global-bucket","value":"draw-auto"},{"$":"global-bucket","value":"paint-job"},{"$":"global-bucket","value":"turbo-charge"},{"$":"global-bucket","value":"make-auto"},{"$":"global-bucket","value":"auto?"},{"$":"global-bucket","value":"car1"},{"$":"global-bucket","value":"auto-set!"},{"$":"global-bucket","value":"auto-rims"},{"$":"global-bucket","value":"auto-hp"},{"$":"global-bucket","value":"auto-model"},{"$":"global-bucket","value":"auto-color"},{"$":"global-bucket","value":"auto-cost"},{"$":"global-bucket","value":"auto"},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("print-values"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("circle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("EXAMPLE"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",215,16,15,4])},{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"toplevel","depth":0,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"constant","value":types.symbol("auto")},{"$":"constant","value":false},{"$":"constant","value":5},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("model")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("hp")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("rims")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("color")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("cost")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",281,19,8,4])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",287,19,14,9]),types.vector(["bootstrap/autos-teachpack",297,19,24,4]),types.vector(["bootstrap/autos-teachpack",302,19,29,3]),types.vector(["bootstrap/autos-teachpack",306,19,33,2]),types.vector(["bootstrap/autos-teachpack",309,19,36,7]),types.vector(["bootstrap/autos-teachpack",317,19,44,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",286,19,13,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",287,19,14,9])},"rands":[{"$":"constant","value":"M5"},{"$":"constant","value":480},{"$":"constant","value":22},{"$":"constant","value":"black"},{"$":"constant","value":50000}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",564,29,9,9])}],"body":{"$":"lam","name":types.symbol("paint-job"),"locs":[types.vector(["bootstrap/autos-teachpack",564,29,9,9]),types.vector(["bootstrap/autos-teachpack",574,29,19,1]),types.vector(["bootstrap/autos-teachpack",576,29,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",586,30,3,9]),types.vector(["bootstrap/autos-teachpack",596,30,13,14]),types.vector(["bootstrap/autos-teachpack",624,31,13,11]),types.vector(["bootstrap/autos-teachpack",649,32,13,13]),types.vector(["bootstrap/autos-teachpack",676,33,13,5]),types.vector(["bootstrap/autos-teachpack",695,34,13,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",585,30,2,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",586,30,3,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",597,30,14,10]),types.vector(["bootstrap/autos-teachpack",608,30,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",596,30,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",597,30,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",625,31,14,7]),types.vector(["bootstrap/autos-teachpack",633,31,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",624,31,13,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",625,31,14,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",650,32,14,9]),types.vector(["bootstrap/autos-teachpack",660,32,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",649,32,13,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",650,32,14,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",696,34,14,9]),types.vector(["bootstrap/autos-teachpack",706,34,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",695,34,13,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",696,34,14,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",781,38,9,12])}],"body":{"$":"lam","name":types.symbol("turbo-charge"),"locs":[types.vector(["bootstrap/autos-teachpack",781,38,9,12]),types.vector(["bootstrap/autos-teachpack",794,38,22,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",800,39,3,9]),types.vector(["bootstrap/autos-teachpack",810,39,13,14]),types.vector(["bootstrap/autos-teachpack",838,40,13,18]),types.vector(["bootstrap/autos-teachpack",870,41,13,13]),types.vector(["bootstrap/autos-teachpack",897,42,13,14]),types.vector(["bootstrap/autos-teachpack",925,43,13,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",799,39,2,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",800,39,3,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",811,39,14,10]),types.vector(["bootstrap/autos-teachpack",822,39,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",810,39,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",811,39,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",839,40,14,1]),types.vector(["bootstrap/autos-teachpack",841,40,16,11]),types.vector(["bootstrap/autos-teachpack",853,40,28,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",838,40,13,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",839,40,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",842,40,17,7]),types.vector(["bootstrap/autos-teachpack",850,40,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",841,40,16,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",842,40,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":20}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",871,41,14,9]),types.vector(["bootstrap/autos-teachpack",881,41,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",870,41,13,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",871,41,14,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",898,42,14,10]),types.vector(["bootstrap/autos-teachpack",909,42,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",897,42,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",898,42,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",926,43,14,9]),types.vector(["bootstrap/autos-teachpack",936,43,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",925,43,13,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",926,43,14,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1094,57,9,9])}],"body":{"$":"lam","name":types.symbol("draw-auto"),"locs":[types.vector(["bootstrap/autos-teachpack",1094,57,9,9]),types.vector(["bootstrap/autos-teachpack",1104,57,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1110,58,3,11]),types.vector(["bootstrap/autos-teachpack",1122,58,15,41]),types.vector(["bootstrap/autos-teachpack",1179,59,15,3]),types.vector(["bootstrap/autos-teachpack",1183,59,19,2]),types.vector(["bootstrap/autos-teachpack",1201,60,15,846])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1109,58,2,939])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1110,58,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1123,58,16,9]),types.vector(["bootstrap/autos-teachpack",1133,58,26,3]),types.vector(["bootstrap/autos-teachpack",1137,58,30,2]),types.vector(["bootstrap/autos-teachpack",1140,58,33,7]),types.vector(["bootstrap/autos-teachpack",1148,58,41,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1122,58,15,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1123,58,16,9])},"rands":[{"$":"constant","value":130},{"$":"constant","value":50},{"$":"constant","value":"solid"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1149,58,42,10]),types.vector(["bootstrap/autos-teachpack",1160,58,53,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1148,58,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1149,58,42,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":130},{"$":"constant","value":50},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1202,60,16,11]),types.vector(["bootstrap/autos-teachpack",1214,60,28,39]),types.vector(["bootstrap/autos-teachpack",1282,61,28,3]),types.vector(["bootstrap/autos-teachpack",1286,61,32,3]),types.vector(["bootstrap/autos-teachpack",1318,62,28,728])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1201,60,15,846])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1202,60,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1215,60,29,6]),types.vector(["bootstrap/autos-teachpack",1222,60,36,13]),types.vector(["bootstrap/autos-teachpack",1236,60,50,7]),types.vector(["bootstrap/autos-teachpack",1244,60,58,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1214,60,28,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1215,60,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1223,60,37,9]),types.vector(["bootstrap/autos-teachpack",1233,60,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1222,60,36,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1223,60,37,9])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"silver"}]}}},{"$":"constant","value":210},{"$":"constant","value":110},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1319,62,29,11]),types.vector(["bootstrap/autos-teachpack",1331,62,41,39]),types.vector(["bootstrap/autos-teachpack",1412,63,41,2]),types.vector(["bootstrap/autos-teachpack",1415,63,44,3]),types.vector(["bootstrap/autos-teachpack",1460,64,41,585])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1318,62,28,728])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1319,62,29,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1332,62,42,6]),types.vector(["bootstrap/autos-teachpack",1339,62,49,13]),types.vector(["bootstrap/autos-teachpack",1353,62,63,7]),types.vector(["bootstrap/autos-teachpack",1361,62,71,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1331,62,41,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1332,62,42,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1340,62,50,9]),types.vector(["bootstrap/autos-teachpack",1350,62,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1339,62,49,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1340,62,50,9])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"silver"}]}}},{"$":"constant","value":90},{"$":"constant","value":110},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1461,64,42,11]),types.vector(["bootstrap/autos-teachpack",1473,64,54,27]),types.vector(["bootstrap/autos-teachpack",1555,65,54,3]),types.vector(["bootstrap/autos-teachpack",1559,65,58,3]),types.vector(["bootstrap/autos-teachpack",1617,66,54,427])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1460,64,41,585])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1461,64,42,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1474,64,55,6]),types.vector(["bootstrap/autos-teachpack",1481,64,62,2]),types.vector(["bootstrap/autos-teachpack",1484,64,65,7]),types.vector(["bootstrap/autos-teachpack",1492,64,73,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1473,64,54,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1474,64,55,6])},"rands":[{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}},{"$":"constant","value":210},{"$":"constant","value":110},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1618,66,55,11]),types.vector(["bootstrap/autos-teachpack",1630,66,67,27]),types.vector(["bootstrap/autos-teachpack",1725,67,67,2]),types.vector(["bootstrap/autos-teachpack",1728,67,70,3]),types.vector(["bootstrap/autos-teachpack",1799,68,67,244])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1617,66,54,427])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1618,66,55,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1631,66,68,6]),types.vector(["bootstrap/autos-teachpack",1638,66,75,2]),types.vector(["bootstrap/autos-teachpack",1641,66,78,7]),types.vector(["bootstrap/autos-teachpack",1649,66,86,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1630,66,67,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":23,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1631,66,68,6])},"rands":[{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}},{"$":"constant","value":90},{"$":"constant","value":110},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1800,68,68,11]),types.vector(["bootstrap/autos-teachpack",1812,68,80,41]),types.vector(["bootstrap/autos-teachpack",1934,69,80,3]),types.vector(["bootstrap/autos-teachpack",1938,69,84,2]),types.vector(["bootstrap/autos-teachpack",2021,70,80,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1799,68,67,244])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1800,68,68,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1813,68,81,9]),types.vector(["bootstrap/autos-teachpack",1823,68,91,3]),types.vector(["bootstrap/autos-teachpack",1827,68,95,2]),types.vector(["bootstrap/autos-teachpack",1830,68,98,7]),types.vector(["bootstrap/autos-teachpack",1838,68,106,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1812,68,80,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1813,68,81,9])},"rands":[{"$":"constant","value":220},{"$":"constant","value":60},{"$":"constant","value":"solid"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1839,68,107,10]),types.vector(["bootstrap/autos-teachpack",1850,68,118,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1838,68,106,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":29,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1839,68,107,10])},"rands":[{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":150},{"$":"constant","value":90},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",2022,70,81,11]),types.vector(["bootstrap/autos-teachpack",2034,70,93,3]),types.vector(["bootstrap/autos-teachpack",2038,70,97,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",2021,70,80,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",2022,70,81,11])},"rands":[{"$":"constant","value":300},{"$":"constant","value":150}]}}}]}}}]}}}]}}}]}}}]}}}]}}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",950,46,0,74]),types.vector(["bootstrap/autos-teachpack",950,46,0,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",950,46,0,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",950,46,0,74])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",951,46,1,7]),types.vector(["bootstrap/autos-teachpack",959,46,9,25]),types.vector(["bootstrap/autos-teachpack",985,46,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",950,46,0,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",951,46,1,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",960,46,10,9]),types.vector(["bootstrap/autos-teachpack",970,46,20,4]),types.vector(["bootstrap/autos-teachpack",975,46,25,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",959,46,9,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",960,46,10,9])},"rands":[{"$":"toplevel","depth":5,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",970,46,20,4])},{"$":"constant","value":"purple"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",986,46,36,9]),types.vector(["bootstrap/autos-teachpack",996,46,46,4]),types.vector(["bootstrap/autos-teachpack",1001,46,51,3]),types.vector(["bootstrap/autos-teachpack",1005,46,55,2]),types.vector(["bootstrap/autos-teachpack",1008,46,58,8]),types.vector(["bootstrap/autos-teachpack",1017,46,67,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",985,46,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",986,46,36,9])},"rands":[{"$":"constant","value":"M5"},{"$":"constant","value":480},{"$":"constant","value":22},{"$":"constant","value":"purple"},{"$":"constant","value":50000}]}}}]}}}]}}}]}}, 'provides': ["draw-auto","paint-job","turbo-charge","make-auto","auto?","car1","auto-hp","auto-model","auto-rims","auto-color","auto-cost"]}; +window.COLLECTIONS["bootstrap/autos-teachpack"] = { 'name': "bootstrap/autos-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"auto-ref"},{"$":"global-bucket","value":"draw-auto"},{"$":"global-bucket","value":"paint-job"},{"$":"global-bucket","value":"turbo-charge"},{"$":"global-bucket","value":"make-auto"},{"$":"global-bucket","value":"auto?"},{"$":"global-bucket","value":"car1"},{"$":"global-bucket","value":"auto-set!"},{"$":"global-bucket","value":"auto-rims"},{"$":"global-bucket","value":"auto-hp"},{"$":"global-bucket","value":"auto-model"},{"$":"global-bucket","value":"auto-color"},{"$":"global-bucket","value":"auto-cost"},{"$":"global-bucket","value":"auto"},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("print-values"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("circle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("EXAMPLE"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",215,16,15,4])},{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"toplevel","depth":0,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"constant","value":types.symbol("auto")},{"$":"constant","value":false},{"$":"constant","value":5},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("model")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("hp")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("rims")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("color")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47]),types.vector(["bootstrap/autos-teachpack",200,16,0,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",200,16,0,47])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("cost")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",281,19,8,4])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",287,19,14,9]),types.vector(["bootstrap/autos-teachpack",297,19,24,4]),types.vector(["bootstrap/autos-teachpack",302,19,29,3]),types.vector(["bootstrap/autos-teachpack",306,19,33,2]),types.vector(["bootstrap/autos-teachpack",309,19,36,7]),types.vector(["bootstrap/autos-teachpack",317,19,44,5]),types.vector(["bootstrap/autos-teachpack",286,19,13,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",286,19,13,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",287,19,14,9])},"rands":[{"$":"constant","value":"M5"},{"$":"constant","value":480},{"$":"constant","value":22},{"$":"constant","value":"black"},{"$":"constant","value":50000}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",564,29,9,9])}],"body":{"$":"lam","name":types.symbol("paint-job"),"locs":[types.vector(["bootstrap/autos-teachpack",564,29,9,9]),types.vector(["bootstrap/autos-teachpack",574,29,19,1]),types.vector(["bootstrap/autos-teachpack",576,29,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",586,30,3,9]),types.vector(["bootstrap/autos-teachpack",596,30,13,14]),types.vector(["bootstrap/autos-teachpack",624,31,13,11]),types.vector(["bootstrap/autos-teachpack",649,32,13,13]),types.vector(["bootstrap/autos-teachpack",676,33,13,5]),types.vector(["bootstrap/autos-teachpack",695,34,13,13]),types.vector(["bootstrap/autos-teachpack",585,30,2,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",585,30,2,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",586,30,3,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",597,30,14,10]),types.vector(["bootstrap/autos-teachpack",608,30,25,1]),types.vector(["bootstrap/autos-teachpack",596,30,13,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",596,30,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",597,30,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",625,31,14,7]),types.vector(["bootstrap/autos-teachpack",633,31,22,1]),types.vector(["bootstrap/autos-teachpack",624,31,13,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",624,31,13,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",625,31,14,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",650,32,14,9]),types.vector(["bootstrap/autos-teachpack",660,32,24,1]),types.vector(["bootstrap/autos-teachpack",649,32,13,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",649,32,13,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",650,32,14,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",696,34,14,9]),types.vector(["bootstrap/autos-teachpack",706,34,24,1]),types.vector(["bootstrap/autos-teachpack",695,34,13,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",695,34,13,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",696,34,14,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",781,38,9,12])}],"body":{"$":"lam","name":types.symbol("turbo-charge"),"locs":[types.vector(["bootstrap/autos-teachpack",781,38,9,12]),types.vector(["bootstrap/autos-teachpack",794,38,22,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",800,39,3,9]),types.vector(["bootstrap/autos-teachpack",810,39,13,14]),types.vector(["bootstrap/autos-teachpack",838,40,13,18]),types.vector(["bootstrap/autos-teachpack",870,41,13,13]),types.vector(["bootstrap/autos-teachpack",897,42,13,14]),types.vector(["bootstrap/autos-teachpack",925,43,13,13]),types.vector(["bootstrap/autos-teachpack",799,39,2,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",799,39,2,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",800,39,3,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",811,39,14,10]),types.vector(["bootstrap/autos-teachpack",822,39,25,1]),types.vector(["bootstrap/autos-teachpack",810,39,13,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",810,39,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",811,39,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",839,40,14,1]),types.vector(["bootstrap/autos-teachpack",841,40,16,11]),types.vector(["bootstrap/autos-teachpack",853,40,28,2]),types.vector(["bootstrap/autos-teachpack",838,40,13,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",838,40,13,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",839,40,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",842,40,17,7]),types.vector(["bootstrap/autos-teachpack",850,40,25,1]),types.vector(["bootstrap/autos-teachpack",841,40,16,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",841,40,16,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",842,40,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":20}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",871,41,14,9]),types.vector(["bootstrap/autos-teachpack",881,41,24,1]),types.vector(["bootstrap/autos-teachpack",870,41,13,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",870,41,13,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",871,41,14,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",898,42,14,10]),types.vector(["bootstrap/autos-teachpack",909,42,25,1]),types.vector(["bootstrap/autos-teachpack",897,42,13,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",897,42,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",898,42,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",926,43,14,9]),types.vector(["bootstrap/autos-teachpack",936,43,24,1]),types.vector(["bootstrap/autos-teachpack",925,43,13,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",925,43,13,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",926,43,14,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1094,57,9,9])}],"body":{"$":"lam","name":types.symbol("draw-auto"),"locs":[types.vector(["bootstrap/autos-teachpack",1094,57,9,9]),types.vector(["bootstrap/autos-teachpack",1104,57,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1110,58,3,11]),types.vector(["bootstrap/autos-teachpack",1122,58,15,41]),types.vector(["bootstrap/autos-teachpack",1179,59,15,3]),types.vector(["bootstrap/autos-teachpack",1183,59,19,2]),types.vector(["bootstrap/autos-teachpack",1201,60,15,846]),types.vector(["bootstrap/autos-teachpack",1109,58,2,939])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1109,58,2,939])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1110,58,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1123,58,16,9]),types.vector(["bootstrap/autos-teachpack",1133,58,26,3]),types.vector(["bootstrap/autos-teachpack",1137,58,30,2]),types.vector(["bootstrap/autos-teachpack",1140,58,33,7]),types.vector(["bootstrap/autos-teachpack",1148,58,41,14]),types.vector(["bootstrap/autos-teachpack",1122,58,15,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1122,58,15,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1123,58,16,9])},"rands":[{"$":"constant","value":130},{"$":"constant","value":50},{"$":"constant","value":"solid"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1149,58,42,10]),types.vector(["bootstrap/autos-teachpack",1160,58,53,1]),types.vector(["bootstrap/autos-teachpack",1148,58,41,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1148,58,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1149,58,42,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":130},{"$":"constant","value":50},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1202,60,16,11]),types.vector(["bootstrap/autos-teachpack",1214,60,28,39]),types.vector(["bootstrap/autos-teachpack",1282,61,28,3]),types.vector(["bootstrap/autos-teachpack",1286,61,32,3]),types.vector(["bootstrap/autos-teachpack",1318,62,28,728]),types.vector(["bootstrap/autos-teachpack",1201,60,15,846])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1201,60,15,846])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1202,60,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1215,60,29,6]),types.vector(["bootstrap/autos-teachpack",1222,60,36,13]),types.vector(["bootstrap/autos-teachpack",1236,60,50,7]),types.vector(["bootstrap/autos-teachpack",1244,60,58,8]),types.vector(["bootstrap/autos-teachpack",1214,60,28,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1214,60,28,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1215,60,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1223,60,37,9]),types.vector(["bootstrap/autos-teachpack",1233,60,47,1]),types.vector(["bootstrap/autos-teachpack",1222,60,36,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1222,60,36,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1223,60,37,9])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"silver"}]}}},{"$":"constant","value":210},{"$":"constant","value":110},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1319,62,29,11]),types.vector(["bootstrap/autos-teachpack",1331,62,41,39]),types.vector(["bootstrap/autos-teachpack",1412,63,41,2]),types.vector(["bootstrap/autos-teachpack",1415,63,44,3]),types.vector(["bootstrap/autos-teachpack",1460,64,41,585]),types.vector(["bootstrap/autos-teachpack",1318,62,28,728])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1318,62,28,728])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1319,62,29,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1332,62,42,6]),types.vector(["bootstrap/autos-teachpack",1339,62,49,13]),types.vector(["bootstrap/autos-teachpack",1353,62,63,7]),types.vector(["bootstrap/autos-teachpack",1361,62,71,8]),types.vector(["bootstrap/autos-teachpack",1331,62,41,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1331,62,41,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1332,62,42,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1340,62,50,9]),types.vector(["bootstrap/autos-teachpack",1350,62,60,1]),types.vector(["bootstrap/autos-teachpack",1339,62,49,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1339,62,49,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1340,62,50,9])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"silver"}]}}},{"$":"constant","value":90},{"$":"constant","value":110},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1461,64,42,11]),types.vector(["bootstrap/autos-teachpack",1473,64,54,27]),types.vector(["bootstrap/autos-teachpack",1555,65,54,3]),types.vector(["bootstrap/autos-teachpack",1559,65,58,3]),types.vector(["bootstrap/autos-teachpack",1617,66,54,427]),types.vector(["bootstrap/autos-teachpack",1460,64,41,585])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1460,64,41,585])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1461,64,42,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1474,64,55,6]),types.vector(["bootstrap/autos-teachpack",1481,64,62,2]),types.vector(["bootstrap/autos-teachpack",1484,64,65,7]),types.vector(["bootstrap/autos-teachpack",1492,64,73,7]),types.vector(["bootstrap/autos-teachpack",1473,64,54,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1473,64,54,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1474,64,55,6])},"rands":[{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}},{"$":"constant","value":210},{"$":"constant","value":110},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1618,66,55,11]),types.vector(["bootstrap/autos-teachpack",1630,66,67,27]),types.vector(["bootstrap/autos-teachpack",1725,67,67,2]),types.vector(["bootstrap/autos-teachpack",1728,67,70,3]),types.vector(["bootstrap/autos-teachpack",1799,68,67,244]),types.vector(["bootstrap/autos-teachpack",1617,66,54,427])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1617,66,54,427])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1618,66,55,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1631,66,68,6]),types.vector(["bootstrap/autos-teachpack",1638,66,75,2]),types.vector(["bootstrap/autos-teachpack",1641,66,78,7]),types.vector(["bootstrap/autos-teachpack",1649,66,86,7]),types.vector(["bootstrap/autos-teachpack",1630,66,67,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1630,66,67,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":23,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1631,66,68,6])},"rands":[{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}},{"$":"constant","value":90},{"$":"constant","value":110},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1800,68,68,11]),types.vector(["bootstrap/autos-teachpack",1812,68,80,41]),types.vector(["bootstrap/autos-teachpack",1934,69,80,3]),types.vector(["bootstrap/autos-teachpack",1938,69,84,2]),types.vector(["bootstrap/autos-teachpack",2021,70,80,21]),types.vector(["bootstrap/autos-teachpack",1799,68,67,244])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1799,68,67,244])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1800,68,68,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1813,68,81,9]),types.vector(["bootstrap/autos-teachpack",1823,68,91,3]),types.vector(["bootstrap/autos-teachpack",1827,68,95,2]),types.vector(["bootstrap/autos-teachpack",1830,68,98,7]),types.vector(["bootstrap/autos-teachpack",1838,68,106,14]),types.vector(["bootstrap/autos-teachpack",1812,68,80,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1812,68,80,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1813,68,81,9])},"rands":[{"$":"constant","value":220},{"$":"constant","value":60},{"$":"constant","value":"solid"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",1839,68,107,10]),types.vector(["bootstrap/autos-teachpack",1850,68,118,1]),types.vector(["bootstrap/autos-teachpack",1838,68,106,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",1838,68,106,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":29,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",1839,68,107,10])},"rands":[{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":150},{"$":"constant","value":90},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",2022,70,81,11]),types.vector(["bootstrap/autos-teachpack",2034,70,93,3]),types.vector(["bootstrap/autos-teachpack",2038,70,97,3]),types.vector(["bootstrap/autos-teachpack",2021,70,80,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",2021,70,80,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",2022,70,81,11])},"rands":[{"$":"constant","value":300},{"$":"constant","value":150}]}}}]}}}]}}}]}}}]}}}]}}}]}}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",950,46,0,74]),types.vector(["bootstrap/autos-teachpack",950,46,0,74]),types.vector(["bootstrap/autos-teachpack",950,46,0,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",950,46,0,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",950,46,0,74])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",951,46,1,7]),types.vector(["bootstrap/autos-teachpack",959,46,9,25]),types.vector(["bootstrap/autos-teachpack",985,46,35,38]),types.vector(["bootstrap/autos-teachpack",950,46,0,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",950,46,0,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",951,46,1,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",960,46,10,9]),types.vector(["bootstrap/autos-teachpack",970,46,20,4]),types.vector(["bootstrap/autos-teachpack",975,46,25,8]),types.vector(["bootstrap/autos-teachpack",959,46,9,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",959,46,9,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",960,46,10,9])},"rands":[{"$":"toplevel","depth":5,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",970,46,20,4])},{"$":"constant","value":"purple"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/autos-teachpack",986,46,36,9]),types.vector(["bootstrap/autos-teachpack",996,46,46,4]),types.vector(["bootstrap/autos-teachpack",1001,46,51,3]),types.vector(["bootstrap/autos-teachpack",1005,46,55,2]),types.vector(["bootstrap/autos-teachpack",1008,46,58,8]),types.vector(["bootstrap/autos-teachpack",1017,46,67,5]),types.vector(["bootstrap/autos-teachpack",985,46,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/autos-teachpack",985,46,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/autos-teachpack",986,46,36,9])},"rands":[{"$":"constant","value":"M5"},{"$":"constant","value":480},{"$":"constant","value":22},{"$":"constant","value":"purple"},{"$":"constant","value":50000}]}}}]}}}]}}}]}}, 'provides': ["draw-auto","paint-job","turbo-charge","make-auto","auto?","car1","auto-hp","auto-model","auto-rims","auto-color","auto-cost"]}; diff --git a/servlet-htdocs/collects/bootstrap/bootstrap-gtp-teachpack.js b/servlet-htdocs/collects/bootstrap/bootstrap-gtp-teachpack.js index 3918865..bf41f81 100644 --- a/servlet-htdocs/collects/bootstrap/bootstrap-gtp-teachpack.js +++ b/servlet-htdocs/collects/bootstrap/bootstrap-gtp-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap/bootstrap-gtp-teachpack"] = { 'name': "bootstrap/bootstrap-gtp-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"dangerImgs"},{"$":"global-bucket","value":"origTargets"},{"$":"global-bucket","value":"origDangers"},{"$":"global-bucket","value":"update-danger*"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"onscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"dangerSource"},{"$":"global-bucket","value":"update-danger"},{"$":"global-bucket","value":"targetSource"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"dangers"},{"$":"global-bucket","value":"keypress*"},{"$":"global-bucket","value":"sources"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"in-domain?"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"safer-rectangle"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-dangers"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"score"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"safer-triangle"},{"$":"global-bucket","value":"safer-star"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"random-posn"},{"$":"global-bucket","value":"safer-circle"},{"$":"global-bucket","value":"safer-ellipse"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"move-all"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"check-collision"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"being-source"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"assert-equal"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"*functions-complained-about*"},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("triangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("raise"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("display"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("format"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("ellipse"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("error"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("circle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1093,38,8,28])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1123,38,38,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1127,38,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1122,38,37,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1123,38,38,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1128,38,43,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1127,38,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1128,38,43,9])},"rands":[]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1151,40,9,12])}],"body":{"$":"lam","name":types.symbol("assert-equal"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",1151,40,9,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1164,40,22,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1179,40,37,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1203,41,22,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1217,41,36,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1231,41,50,6])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1242,42,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1246,42,7,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1253,42,14,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1268,42,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1246,42,7,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1291,43,7,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1299,43,15,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1290,43,6,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1291,43,7,7])},"rands":[{"$":"constant","value":""}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1319,44,7,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1334,45,7,519])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1318,44,6,536])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1319,44,7,7])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1335,45,8,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1339,45,12,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1346,45,19,27]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1374,45,47,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1339,45,12,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1347,45,20,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1354,45,27,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1359,45,32,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1346,45,19,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1347,45,20,6])},"rands":[{"$":"constant","value":"~a"},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1375,45,48,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1382,45,55,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1387,45,60,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1374,45,47,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1375,45,48,6])},"rands":[{"$":"constant","value":"~a"},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1409,46,12,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1421,47,12,128]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1555,52,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1569,52,26,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1581,53,12,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1601,54,12,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1408,46,11,208])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1409,46,12,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1422,47,13,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1442,48,13,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1475,49,13,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1505,50,13,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1530,51,13,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1421,47,12,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1422,47,13,13])},"rands":[{"$":"constant","value":"EXAMPLE CHECK FAILED: \n"},{"$":"constant","value":" For ~a at line ~a\n"},{"$":"constant","value":" Expected: ~s\n"},{"$":"constant","value":" But got: ~s\n"}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1622,55,12,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1635,56,12,136]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1777,61,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1791,61,26,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1803,62,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1817,62,26,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1837,63,12,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1621,55,11,231])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1622,55,12,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1636,56,13,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1656,57,13,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1689,58,13,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1719,59,13,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1752,60,13,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1635,56,12,136])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1636,56,13,13])},"rands":[{"$":"constant","value":"EXAMPLE CHECK FAILED: \n"},{"$":"constant","value":" For ~a at line ~a\n"},{"$":"constant","value":" Expected: ~a => ~s\n"},{"$":"constant","value":" But got: ~s\n"}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3189,112,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3189,112,9,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3194,112,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3212,114,5,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3223,114,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3212,114,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3245,115,5,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3253,115,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3245,115,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3273,116,5,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3281,116,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3273,116,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3301,117,5,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3308,117,12,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3301,117,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3327,118,5,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3336,118,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3327,118,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3357,119,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3363,119,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3357,119,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3385,120,5,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3393,120,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3385,120,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3522,125,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3522,125,9,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3536,125,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3542,126,3,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3547,126,8,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3549,126,10,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3552,126,13,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3541,126,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3542,126,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3647,130,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3647,130,9,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3661,130,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3667,131,3,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3681,131,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3666,131,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3667,131,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3682,131,18,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3697,131,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3681,131,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3682,131,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3842,136,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3842,136,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3852,136,19,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3856,136,23,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3858,136,25,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3864,137,3,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3876,137,15,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3880,137,19,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3882,137,21,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3892,137,31,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3863,137,2,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3864,137,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3883,137,22,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3885,137,24,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3889,137,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3882,137,21,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3883,137,22,1])},"rands":[{"$":"constant","value":480},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3893,137,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3905,137,44,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3909,137,48,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3892,137,31,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3893,137,32,11])},"rands":[{"$":"constant","value":640},{"$":"constant","value":480}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3977,140,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3977,140,9,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3988,140,20,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3999,140,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4001,140,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4003,140,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4018,141,3,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4029,141,14,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4040,141,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4042,141,27,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4050,141,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4017,141,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4018,141,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4043,141,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4045,141,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4047,141,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4042,141,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4043,141,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4073,143,9,12])}],"body":{"$":"lam","name":types.symbol("safer-circle"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",4073,143,9,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4086,143,22,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4091,143,27,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4096,143,32,5])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4116,145,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4121,145,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4129,145,18,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4121,145,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4116,145,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4136,145,25,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4139,145,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4145,145,34,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4136,145,25,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4157,146,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4163,146,11,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4156,146,4,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4157,146,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4164,146,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4178,146,26,84]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4263,146,111,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4163,146,11,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4164,146,12,13])},"rands":[{"$":"constant","value":"circle: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4264,146,112,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4279,146,127,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4263,146,111,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4264,146,112,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4298,147,10,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4305,147,17,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4310,147,22,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4315,147,27,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4297,147,9,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4298,147,10,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4334,148,9,14])}],"body":{"$":"lam","name":types.symbol("safer-triangle"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",4334,148,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4349,148,24,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4354,148,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4359,148,34,5])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4379,150,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4384,150,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4392,150,18,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4384,150,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4379,150,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4399,150,25,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4402,150,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4408,150,34,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4399,150,25,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4420,151,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4426,151,11,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4419,151,4,132])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4420,151,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4427,151,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4441,151,26,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4528,151,113,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4426,151,11,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4427,151,12,13])},"rands":[{"$":"constant","value":"triangle: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4529,151,114,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4544,151,129,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4528,151,113,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4529,151,114,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4563,152,10,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4572,152,19,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4577,152,24,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4582,152,29,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4562,152,9,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4563,152,10,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4601,153,9,15])}],"body":{"$":"lam","name":types.symbol("safer-rectangle"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",4601,153,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4617,153,25,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4623,153,31,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4630,153,38,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4635,153,43,5])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4655,155,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4660,155,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4668,155,18,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4660,155,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4655,155,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4676,155,26,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4679,155,29,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4685,155,35,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4676,155,26,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4698,156,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4704,156,11,126])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4697,156,4,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4698,156,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4705,156,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4719,156,26,87]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4807,156,114,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4704,156,11,126])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4705,156,12,13])},"rands":[{"$":"constant","value":"rectangle: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4808,156,115,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4823,156,130,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4807,156,114,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4808,156,115,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4838,157,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4843,157,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4851,157,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4843,157,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4838,157,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4860,157,27,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4863,157,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4869,157,36,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4860,157,27,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4883,158,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4889,158,11,128])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4882,158,4,136])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4883,158,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4890,158,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4904,158,26,88]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4993,158,115,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4889,158,11,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4890,158,12,13])},"rands":[{"$":"constant","value":"rectangle: expected as second argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4994,158,116,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5009,158,131,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4993,158,115,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4994,158,116,14])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5030,159,10,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5040,159,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5046,159,26,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5053,159,33,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5058,159,38,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5029,159,9,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5030,159,10,9])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5077,160,9,13])}],"body":{"$":"lam","name":types.symbol("safer-ellipse"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",5077,160,9,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5091,160,23,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5097,160,29,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5104,160,36,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5109,160,41,5])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5129,162,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5134,162,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5142,162,18,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5134,162,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5129,162,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5150,162,26,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5153,162,29,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5159,162,35,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5150,162,26,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5172,163,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5178,163,11,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5171,163,4,132])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5172,163,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5179,163,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5193,163,26,85]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5279,163,112,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5178,163,11,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5179,163,12,13])},"rands":[{"$":"constant","value":"ellipse: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5280,163,113,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5295,163,128,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5279,163,112,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5280,163,113,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5310,164,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5315,164,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5323,164,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5315,164,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5310,164,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5332,164,27,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5335,164,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5341,164,36,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5332,164,27,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5355,165,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5361,165,11,126])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5354,165,4,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5355,165,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5362,165,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5376,165,26,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5463,165,113,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5361,165,11,126])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5362,165,12,13])},"rands":[{"$":"constant","value":"ellipse: expected as second argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5464,165,114,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5479,165,129,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5463,165,113,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5464,165,114,14])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5500,166,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5508,166,18,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5514,166,24,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5521,166,31,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5526,166,36,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5499,166,9,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5500,166,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5545,167,9,10])}],"body":{"$":"lam","name":types.symbol("safer-star"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",5545,167,9,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5556,167,20,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5563,167,27,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5571,167,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5578,167,42,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5583,167,47,5])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5603,169,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5608,169,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5616,169,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5608,169,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5603,169,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5625,169,27,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5628,169,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5634,169,36,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5625,169,27,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5648,170,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5654,170,11,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5647,170,4,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5648,170,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5655,170,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5669,170,26,82]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5752,170,109,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5654,170,11,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5655,170,12,13])},"rands":[{"$":"constant","value":"star: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5753,170,110,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5768,170,125,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5752,170,109,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5753,170,110,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5784,171,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5789,171,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5797,171,18,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5789,171,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5784,171,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5807,171,28,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5810,171,31,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5816,171,37,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5807,171,28,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5831,172,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5837,172,11,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5830,172,4,132])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5831,172,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5838,172,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5852,172,26,83]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5936,172,110,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5837,172,11,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5838,172,12,13])},"rands":[{"$":"constant","value":"star: expected as second argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5937,172,111,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5952,172,126,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5936,172,110,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5937,172,111,14])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5969,173,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5974,173,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5982,173,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5974,173,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5969,173,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5991,173,27,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5994,173,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6000,173,36,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5991,173,27,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6014,174,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6020,174,11,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6013,174,4,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6014,174,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6021,174,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6035,174,26,82]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6118,174,109,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6020,174,11,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6021,174,12,13])},"rands":[{"$":"constant","value":"star: expected as third argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6119,174,110,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6134,174,125,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6118,174,109,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6119,174,110,14])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6155,175,10,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6160,175,15,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6167,175,22,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6175,175,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6182,175,37,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6187,175,42,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6154,175,9,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6155,175,10,4])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])}]}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6219,178,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6238,179,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6258,180,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6290,181,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6303,181,21,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6307,181,25,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6302,181,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6303,181,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6325,182,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6337,182,20,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6341,182,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6336,182,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6337,182,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6342,182,25,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6352,182,35,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6358,182,41,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6365,182,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6373,182,56,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6341,182,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6342,182,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6352,182,35,5])},{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6358,182,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6392,183,8,5])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6399,183,15,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6403,183,19,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6398,183,14,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6399,183,15,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6446,185,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",6446,185,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6456,185,19,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6463,185,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6455,185,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6456,185,19,6])},"rands":[{"$":"constant","value":200}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6640,192,15,5])},{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":3},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("source")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6786,195,15,5])},{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":7},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("dangers")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6879,198,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6888,198,17,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6896,198,25,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6903,198,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6887,198,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6888,198,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6896,198,25,6])},{"$":"toplevel","depth":2,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6903,198,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6924,199,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6933,199,17,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6941,199,25,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6948,199,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6932,199,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6933,199,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6941,199,25,6])},{"$":"toplevel","depth":2,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6948,199,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7016,202,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7016,202,9,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7028,202,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7035,202,28,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7045,202,38,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7059,202,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7034,202,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7035,202,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7046,202,39,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7053,202,46,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7045,202,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7046,202,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7060,202,53,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7062,202,55,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7069,202,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7059,202,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7060,202,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7062,202,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7070,202,63,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7072,202,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7069,202,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7070,202,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7073,202,66,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7080,202,73,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7072,202,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7073,202,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7206,206,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7206,206,9,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7217,206,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7223,206,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7237,207,2,182]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7256,207,21,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7237,207,2,182])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7237,207,2,182]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7244,207,9,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7296,208,5,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7308,208,17,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7348,209,17,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7369,209,38,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7407,210,17,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7295,208,4,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7296,208,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7309,208,18,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7323,208,32,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7308,208,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7309,208,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7349,209,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7356,209,25,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7348,209,17,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7349,209,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7370,209,39,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7377,209,46,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7369,209,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7370,209,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7257,207,22,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7269,207,34,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7256,207,21,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7257,207,22,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7270,207,35,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7281,207,46,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7269,207,34,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7270,207,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7542,214,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7542,214,9,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7553,214,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7565,215,9,102]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7579,215,23,87])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7565,215,9,102])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7565,215,9,102]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7566,215,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7677,217,9,318]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7685,217,17,309])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7677,217,9,318])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7677,217,9,318]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7678,217,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8005,225,9,74]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8020,226,10,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8005,225,9,74])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8005,225,9,74]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8006,225,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8086,227,5,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8098,227,17,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8141,227,60,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8144,227,63,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8164,228,17,66])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8085,227,4,146])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8086,227,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8099,227,18,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8104,227,23,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8117,227,36,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8120,227,39,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8098,227,17,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8099,227,18,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8121,227,40,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8127,227,46,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8120,227,39,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8121,227,40,5])},"rands":[{"$":"toplevel","depth":8,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8127,227,46,11])}]}}}]}}},{"$":"constant","value":10},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8165,228,18,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8171,228,24,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8182,228,35,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8219,228,72,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8164,228,17,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8165,228,18,5])},"rands":[{"$":"toplevel","depth":7,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8171,228,24,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8183,228,36,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8195,228,48,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8214,228,67,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8216,228,69,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8182,228,35,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8183,228,36,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8196,228,49,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8202,228,55,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8195,228,48,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8196,228,49,5])},"rands":[{"$":"toplevel","depth":11,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8202,228,55,10])}]}}},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8021,226,11,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8028,226,18,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8046,226,36,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8064,226,54,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8020,226,10,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8021,226,11,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8029,226,19,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8043,226,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8028,226,18,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8029,226,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8047,226,37,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8061,226,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8046,226,36,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8047,226,37,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8065,226,55,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8070,226,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8064,226,54,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8065,226,55,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7686,217,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7690,217,22,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7692,217,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7708,217,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7690,217,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7693,217,25,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7705,217,37,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7692,217,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7693,217,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7733,218,22,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7744,218,33,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7807,219,33,104]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7917,222,33,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7732,218,21,223])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7733,218,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7745,218,34,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7756,218,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7744,218,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7745,218,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7757,218,46,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7770,218,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7756,218,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7757,218,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7808,219,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7813,219,39,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7815,219,41,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7851,220,39,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7887,221,39,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7895,221,47,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7807,219,33,104])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7808,219,34,4])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7816,219,42,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7818,219,44,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7822,219,48,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7815,219,41,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7816,219,42,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7823,219,49,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7835,219,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7822,219,48,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7823,219,49,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7852,220,40,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7854,220,42,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7858,220,46,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7851,220,39,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7852,220,40,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7859,220,47,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7871,220,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7858,220,46,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7859,220,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":9,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7895,221,47,15])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7918,222,34,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7931,222,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7917,222,33,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7918,222,34,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7932,222,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7945,222,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7931,222,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7932,222,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7978,224,22,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7991,224,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7977,224,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7978,224,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7580,215,24,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7594,215,38,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7610,215,54,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7633,216,38,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7579,215,23,87])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7580,215,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7595,215,39,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7607,215,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7594,215,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7595,215,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7634,216,39,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7649,216,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7633,216,38,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7634,216,39,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7650,216,55,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7662,216,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7649,216,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7650,216,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8244,230,9,15])}],"body":{"$":"lam","name":types.symbol("check-collision"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8244,230,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8260,230,25,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8267,230,32,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8274,230,39,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8287,231,3,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8291,231,7,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8286,231,2,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8287,231,3,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8292,231,8,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8299,231,15,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8291,231,7,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8292,231,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8300,231,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8307,231,23,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8357,232,23,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8299,231,15,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8300,231,16,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8308,231,24,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8316,231,32,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8324,231,40,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8333,231,49,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8340,231,56,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8323,231,39,23])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8404,235,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8404,235,9,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8409,235,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8417,236,3,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8426,236,12,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8430,236,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8416,236,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8417,236,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8431,236,17,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8438,236,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8430,236,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8431,236,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8439,236,25,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8446,236,32,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8438,236,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8439,236,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8561,240,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8561,240,9,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8569,240,17,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8571,240,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8578,241,3,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8588,242,3,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8621,243,3,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8577,241,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8578,241,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8589,242,4,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8597,242,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8603,242,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8610,242,25,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8614,242,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8602,242,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8603,242,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8635,245,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8635,245,9,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8639,245,13,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8641,245,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8647,246,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8651,246,7,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8657,246,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8651,246,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8661,246,17,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8669,246,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8671,246,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8660,246,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8661,246,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8675,246,31,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8682,246,38,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8684,246,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8674,246,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8675,246,31,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8861,250,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8861,250,9,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8873,250,21,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8875,250,23,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8898,252,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8903,252,11,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8905,252,13,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8925,252,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8903,252,11,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8906,252,14,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8922,252,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8905,252,13,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8906,252,14,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8898,252,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8929,252,37,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8933,252,41,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8941,252,49,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8929,252,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8942,252,50,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8947,252,55,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8953,252,61,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8941,252,49,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8942,252,50,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8971,253,6,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8979,253,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8983,253,18,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8994,253,29,39]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9043,254,29,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9061,254,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8982,253,17,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8983,253,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8995,253,30,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9005,253,40,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9017,253,52,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8994,253,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8995,253,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9006,253,41,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9014,253,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9005,253,40,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9006,253,41,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9018,253,53,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9020,253,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9017,253,52,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9021,253,56,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9029,253,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9020,253,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9021,253,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9044,254,30,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9058,254,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9043,254,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9044,254,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9062,254,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9075,254,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9061,254,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9062,254,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9087,255,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9092,255,11,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9094,255,13,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9114,255,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9092,255,11,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9095,255,14,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9111,255,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9094,255,13,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9095,255,14,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9087,255,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9118,255,37,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9122,255,41,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9130,255,49,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9118,255,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9131,255,50,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9136,255,55,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9143,255,62,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9130,255,49,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9131,255,50,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9160,256,6,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9168,256,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9172,256,18,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9183,256,29,39]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9232,257,29,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9250,257,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9171,256,17,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9172,256,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9184,256,30,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9194,256,40,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9210,256,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9183,256,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9184,256,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9195,256,41,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9197,256,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9194,256,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9198,256,44,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9206,256,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9197,256,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9198,256,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9211,256,57,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9219,256,65,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9210,256,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9211,256,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9233,257,30,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9247,257,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9232,257,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9233,257,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9251,257,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9264,257,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9250,257,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9251,257,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9276,258,6,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9278,258,8,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9298,258,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9276,258,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9279,258,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9295,258,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9278,258,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9279,258,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9307,259,6,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9315,259,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9319,259,18,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9330,259,29,27]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9367,260,29,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9385,260,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9318,259,17,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9319,259,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9331,259,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9333,259,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9345,259,44,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9330,259,29,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9334,259,33,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9342,259,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9333,259,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9334,259,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9346,259,45,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9354,259,53,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9345,259,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9346,259,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9368,260,30,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9382,260,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9367,260,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9368,260,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9386,260,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9399,260,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9385,260,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9386,260,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9411,261,6,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9413,261,8,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9433,261,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9411,261,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9414,261,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9430,261,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9413,261,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9414,261,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":3}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9442,262,6,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9450,262,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9454,262,18,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9465,262,29,44]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9518,263,29,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9536,263,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9453,262,17,100])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9454,262,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9466,262,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9468,262,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9480,262,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9492,262,56,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9465,262,29,44])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9469,262,33,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9477,262,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9468,262,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9469,262,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9481,262,45,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9489,262,53,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9480,262,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9481,262,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9493,262,57,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9506,262,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9492,262,56,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9493,262,57,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9519,263,30,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9533,263,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9518,263,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9519,263,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9537,263,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9550,263,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9536,263,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9537,263,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])}]}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9569,266,9,11])}],"body":{"$":"lam","name":types.symbol("random-posn"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9569,266,9,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9581,266,21,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9591,267,2,1608]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9600,267,11,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9615,268,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9591,267,2,1608])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9591,267,2,1608]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9598,267,9,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9613,268,9,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9648,270,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9657,270,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9664,270,23,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9648,270,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9680,271,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9690,271,17,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9699,271,26,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9679,271,6,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9680,271,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9691,271,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9693,271,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9695,271,22,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9690,271,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9691,271,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9700,271,27,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9707,271,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9699,271,26,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9700,271,27,6])},"rands":[{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9707,271,34,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9724,272,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9733,272,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9740,272,23,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9724,272,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9757,273,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9767,273,17,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9779,273,29,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9756,273,6,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9757,273,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9768,273,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9770,273,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9772,273,22,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9767,273,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9768,273,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9772,273,22,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9780,273,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9787,273,37,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9779,273,29,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9780,273,30,6])},"rands":[{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9787,273,37,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9804,274,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9813,274,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9820,274,23,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9804,274,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9835,275,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9845,275,17,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9860,275,32,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9834,275,6,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9835,275,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9846,275,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9853,275,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9845,275,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9846,275,18,6])},"rands":[{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9853,275,25,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9861,275,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9863,275,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9865,275,37,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9860,275,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9861,275,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9865,275,37,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9882,276,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9891,276,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9898,276,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9882,276,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9916,277,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9926,277,17,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9941,277,32,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9915,277,6,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9916,277,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9927,277,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9934,277,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9926,277,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9927,277,18,6])},"rands":[{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9934,277,25,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9942,277,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9944,277,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9946,277,37,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9941,277,32,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9942,277,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9959,278,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9968,278,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9975,278,23,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9959,278,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom-left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9998,279,7,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10011,280,7,129])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9997,279,6,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9998,279,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10012,280,8,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10019,281,8,71]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10092,282,8,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10011,280,7,129])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10012,280,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10020,281,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10030,281,19,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10060,281,49,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10019,281,8,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10020,281,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10031,281,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10033,281,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10030,281,19,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10031,281,20,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10061,281,50,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10068,281,57,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10060,281,49,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10061,281,50,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10069,281,58,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10075,281,64,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10068,281,57,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10069,281,58,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10076,281,65,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10078,281,67,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10080,281,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10075,281,64,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10076,281,65,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10080,281,69,6])}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10093,282,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10103,282,19,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10133,282,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10092,282,8,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10093,282,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10104,282,20,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10111,282,27,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10103,282,19,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10104,282,20,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10112,282,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10118,282,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10111,282,27,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10112,282,28,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10119,282,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10121,282,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10123,282,39,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10118,282,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10119,282,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10123,282,39,5])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10134,282,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10136,282,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10133,282,49,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10134,282,50,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10150,283,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10159,283,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10166,283,23,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10150,283,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom-right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10189,284,7,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10201,285,7,125])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10188,284,6,139])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10189,284,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10202,285,8,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10208,286,8,47]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10257,287,8,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10201,285,7,125])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10202,285,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10209,286,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10219,286,19,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10249,286,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10208,286,8,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10209,286,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10220,286,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10222,286,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10228,286,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10219,286,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10220,286,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10222,286,22,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10229,286,29,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10231,286,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10233,286,33,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10228,286,28,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10229,286,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10233,286,33,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10250,286,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10252,286,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10249,286,49,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10250,286,50,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10258,287,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10268,287,19,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10295,287,46,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10257,287,8,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10258,287,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10269,287,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10271,287,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10277,287,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10268,287,19,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10269,287,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10271,287,22,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10296,287,47,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10303,287,54,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10295,287,46,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10296,287,47,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10304,287,55,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10310,287,61,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10303,287,54,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10304,287,55,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10311,287,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10313,287,64,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10315,287,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10310,287,61,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10311,287,62,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10315,287,66,6])}]}}}]}}}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10336,288,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10345,288,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10352,288,23,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10336,288,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top-left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10371,289,7,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10383,290,7,129])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10370,289,6,143])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10371,289,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10384,290,8,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10390,291,8,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10457,292,8,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10383,290,7,129])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10384,290,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10391,291,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10401,291,19,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10431,291,49,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10390,291,8,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10391,291,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10402,291,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10404,291,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10401,291,19,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10402,291,20,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10432,291,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10434,291,52,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10441,291,59,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10431,291,49,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10432,291,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10434,291,52,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10442,291,60,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10444,291,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10446,291,64,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10441,291,59,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10442,291,60,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10446,291,64,6])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10458,292,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10468,292,19,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10498,292,49,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10457,292,8,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10458,292,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10469,292,20,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10476,292,27,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10468,292,19,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10469,292,20,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10477,292,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10483,292,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10476,292,27,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10477,292,28,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10484,292,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10486,292,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10488,292,39,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10483,292,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10484,292,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10488,292,39,5])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10499,292,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10501,292,52,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10508,292,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10498,292,49,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10499,292,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10501,292,52,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10522,293,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10531,293,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10538,293,23,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10522,293,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top-right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10558,294,7,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10571,295,7,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10557,294,6,145])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10558,294,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10572,295,8,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10579,296,8,54]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10635,297,8,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10571,295,7,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10572,295,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10580,296,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10590,296,19,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10620,296,49,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10579,296,8,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10580,296,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10591,296,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10593,296,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10599,296,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10590,296,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10591,296,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10593,296,22,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10600,296,29,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10602,296,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10604,296,33,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10599,296,28,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10600,296,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10604,296,33,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10621,296,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10623,296,52,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10630,296,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10620,296,49,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10621,296,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10623,296,52,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10636,297,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10646,297,19,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10676,297,49,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10635,297,8,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10636,297,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10647,297,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10649,297,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10655,297,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10646,297,19,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10647,297,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10649,297,22,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10677,297,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10679,297,52,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10686,297,59,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10676,297,49,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10677,297,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10679,297,52,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10687,297,60,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10689,297,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10691,297,64,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10686,297,59,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10687,297,60,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10691,297,64,6])}]}}}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10711,298,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10720,298,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10727,298,23,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10711,298,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"onscreen"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10746,299,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10756,299,17,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10792,300,17,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10745,299,6,81])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10746,299,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10757,299,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10759,299,20,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10767,299,28,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10756,299,17,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10757,299,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10760,299,21,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10762,299,23,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10764,299,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10759,299,20,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10760,299,21,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10768,299,29,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10775,299,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10767,299,28,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10768,299,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10776,299,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10778,299,39,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10784,299,45,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10775,299,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10776,299,37,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10778,299,39,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10793,300,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10795,300,20,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10803,300,28,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10792,300,17,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10793,300,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10796,300,21,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10798,300,23,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10800,300,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10795,300,20,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10796,300,21,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10804,300,29,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10811,300,36,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10803,300,28,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10804,300,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10812,300,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10814,300,39,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10821,300,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10811,300,36,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10812,300,37,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10814,300,39,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10835,301,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10844,301,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10851,301,23,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10835,301,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"screen-left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10873,302,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10883,302,17,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10897,302,31,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10872,302,6,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10873,302,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10884,302,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10886,302,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10892,302,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10883,302,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10884,302,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10886,302,20,5])},{"$":"constant","value":types.rational(1, 4)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10898,302,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10900,302,34,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10908,302,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10897,302,31,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10898,302,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10901,302,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10903,302,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10905,302,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10900,302,34,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10901,302,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10909,302,43,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10916,302,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10908,302,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10909,302,43,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10917,302,51,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10919,302,53,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10926,302,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10916,302,50,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10917,302,51,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10919,302,53,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10940,303,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10949,303,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10956,303,23,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10940,303,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"screen-right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10979,304,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10989,304,17,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11003,304,31,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10978,304,6,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10979,304,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10990,304,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10992,304,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10998,304,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10989,304,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10990,304,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10992,304,20,5])},{"$":"constant","value":types.rational(3, 4)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11004,304,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11006,304,34,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11014,304,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11003,304,31,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11004,304,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11007,304,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11009,304,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11011,304,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11006,304,34,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11007,304,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11015,304,43,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11022,304,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11014,304,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11015,304,43,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11023,304,51,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11025,304,53,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11032,304,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11022,304,50,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11023,304,51,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11025,304,53,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11046,305,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11055,305,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11062,305,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11046,305,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"center"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11079,306,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11089,306,17,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11103,306,31,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11078,306,6,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11079,306,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11090,306,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11092,306,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11098,306,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11089,306,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11090,306,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11092,306,20,5])},{"$":"constant","value":types.rational(1, 2)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11104,306,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11106,306,34,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11113,306,41,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11103,306,31,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11104,306,32,1])},"rands":[{"$":"toplevel","depth":4,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11106,306,34,6])},{"$":"constant","value":types.rational(1, 2)}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11132,307,12,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11138,307,18,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11131,307,11,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11132,307,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11139,307,19,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11146,307,26,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11182,307,62,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11138,307,18,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11139,307,19,6])},"rands":[{"$":"constant","value":"don't know what position ~a means"},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])}]}}}}}}}}}}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9601,267,12,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9600,267,11,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9601,267,12,7])},"rands":[]}}},{"$":"constant","value":types.rational(1, 3)}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11334,313,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",11334,313,9,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11340,313,15,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11346,313,21,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11371,315,6,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11377,315,12,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11371,315,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11391,316,5,101]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11405,316,19,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11391,316,5,101])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",11391,316,5,101]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11398,316,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11430,317,8,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11441,317,19,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11462,317,40,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11484,317,62,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11429,317,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11430,317,8,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11442,317,20,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11454,317,32,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11441,317,19,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11442,317,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11463,317,41,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11477,317,55,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11462,317,40,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11463,317,41,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11406,316,20,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11411,316,25,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11405,316,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11406,316,20,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11500,318,6,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11508,318,14,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11500,318,6,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11523,319,6,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11534,319,17,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11556,319,39,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11578,319,61,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11522,319,5,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11523,319,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11535,319,18,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11547,319,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11534,319,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11535,319,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11557,319,40,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11571,319,54,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11556,319,39,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11557,319,40,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11599,320,11,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11605,320,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11598,320,10,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11599,320,11,5])},"rands":[{"$":"constant","value":"strange being source"}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11795,324,9,8])}],"body":{"$":"lam","name":types.symbol("move-all"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",11795,324,9,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11804,324,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11811,324,25,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11816,324,30,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11827,324,41,7])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11839,325,3,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11843,325,7,98]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11950,329,7,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11838,325,2,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11839,325,3,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",11844,325,8,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11852,325,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11859,326,10,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11863,326,14,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11874,326,25,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11886,326,37,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11875,326,26,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11883,326,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11874,326,25,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11875,326,26,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11887,326,38,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11895,326,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11886,326,37,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11887,326,38,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11907,327,14,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11912,327,19,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11906,327,13,8])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11923,328,14,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11929,328,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11931,328,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11922,328,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11923,328,14,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12190,334,9,8])}],"body":{"$":"lam","name":types.symbol("keypress"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",12190,334,9,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12199,334,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12201,334,20,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12205,334,24,13])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12234,336,6,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12243,336,15,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12247,336,19,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12234,336,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"release"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12277,338,6,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12288,338,17,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12323,339,17,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12358,340,17,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12412,341,17,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12442,342,17,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12475,343,17,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12508,344,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12276,338,5,248])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12277,338,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12289,338,18,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12303,338,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12288,338,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12289,338,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12324,339,18,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12338,339,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12323,339,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12324,339,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12359,340,18,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12373,340,32,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12390,340,49,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12358,340,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12374,340,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12387,340,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12373,340,32,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12374,340,33,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12413,341,18,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12422,341,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12412,341,17,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12413,341,18,8])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12443,342,18,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12455,342,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12442,342,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12443,342,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12476,343,18,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12488,343,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12475,343,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12476,343,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12509,344,18,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12521,344,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12508,344,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12509,344,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12830,350,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",12830,350,9,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12836,350,15,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12842,350,21,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12876,351,22,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12896,352,22,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12907,352,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12928,353,22,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12939,353,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12960,354,22,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12992,355,22,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13007,355,37,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13022,355,52,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13059,356,22,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13069,356,32,10])],"flags":[],"num-params":13,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13095,358,5,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13104,358,14,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13116,358,26,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13094,358,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13095,358,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13104,358,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13134,359,5,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13143,359,14,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13154,359,25,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13133,359,4,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13134,359,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13143,359,14,10])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13177,360,11,88]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13185,360,19,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13177,360,11,88])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13177,360,11,88]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13178,360,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13277,362,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13289,362,23,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13277,362,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13277,362,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13278,362,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13354,363,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13366,363,23,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13354,363,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13354,363,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13355,363,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13424,364,11,113]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13442,365,12,94])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13424,364,11,113])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13424,364,11,113]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13425,364,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13542,368,11,112]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13560,369,12,93])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13542,368,11,112])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13542,368,11,112]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13543,368,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13666,372,11,256]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13675,372,20,246])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13666,372,11,256])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13666,372,11,256]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13667,372,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13934,376,11,214]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13943,376,20,204])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13934,376,11,214])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13934,376,11,214]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13935,376,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14160,380,11,57]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14175,380,26,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14160,380,11,57])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14160,380,11,57]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14161,380,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14229,381,11,57]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14244,381,26,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14229,381,11,57])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14229,381,11,57]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14230,381,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14298,382,11,904]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14298,382,11,904])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14298,382,11,904]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14299,382,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15214,406,11,98]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15225,406,22,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15214,406,11,98])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15214,406,11,98]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15215,406,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15324,408,11,108]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15334,408,21,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15324,408,11,108])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15324,408,11,108]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15325,408,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15444,411,11,202]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15451,411,18,194])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15444,411,11,202])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15444,411,11,202]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15445,411,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15658,416,11,55]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15669,416,22,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15658,416,11,55])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15658,416,11,55]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15659,416,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15725,417,11,1664]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15739,417,25,1649])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15725,417,11,1664])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15725,417,11,1664]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15726,417,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17398,451,7,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17410,451,19,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17432,452,16,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17474,453,16,22]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17513,454,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17397,451,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17398,451,7,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17433,452,17,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17441,452,25,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17454,452,38,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17432,452,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17433,452,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17475,453,17,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17485,453,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17474,453,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17475,453,17,9])},"rands":[{"$":"toplevel","depth":5,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17485,453,27,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17514,454,17,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17521,454,24,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17513,454,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17514,454,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15740,417,26,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15748,417,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15875,421,30,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15884,421,39,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15890,421,45,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15874,421,29,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15875,421,30,8])},"rands":[{"$":"toplevel","depth":2,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15884,421,39,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15891,421,46,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15903,421,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15890,421,45,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15891,421,46,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15944,423,36,96]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15962,424,37,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15944,423,36,96])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15944,423,36,96]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15945,423,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16077,426,36,97]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16095,427,37,78])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16077,426,36,97])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16077,426,36,97]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16078,426,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16211,429,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16218,429,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16211,429,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16211,429,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16212,429,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16271,430,36,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16279,430,44,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16271,430,36,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16271,430,36,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16272,430,37,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16333,431,36,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16337,431,40,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16333,431,36,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16333,431,36,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16334,431,37,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16387,432,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16394,432,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16387,432,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16387,432,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16388,432,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16447,433,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16454,433,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16447,433,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16447,433,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16448,433,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16544,435,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16546,435,37,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16552,435,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16544,435,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16590,436,35,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16601,436,46,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16609,436,54,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16617,436,62,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16624,436,69,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16639,437,46,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16645,437,52,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16651,437,58,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16589,436,34,75])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16590,436,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16652,437,59,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16654,437,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16660,437,67,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16651,437,58,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16652,437,59,1])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16701,438,35,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16717,438,51,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16724,438,58,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16732,438,66,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16701,438,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16886,441,37,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16897,441,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16905,441,56,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16913,441,64,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16920,441,71,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16930,442,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16943,442,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16949,442,67,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16885,441,36,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16886,441,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16931,442,49,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16933,442,51,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16939,442,57,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16930,442,48,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16931,442,49,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":50}]}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16991,443,35,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17007,443,51,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17014,443,58,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17022,443,66,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16991,443,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17178,446,37,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17189,446,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17197,446,56,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17205,446,64,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17212,446,71,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17222,447,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17235,447,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17241,447,67,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17177,446,36,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17178,446,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17223,447,49,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17225,447,51,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17231,447,57,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17222,447,48,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17223,447,49,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":20}]}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17288,448,40,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17299,448,51,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17307,448,59,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17315,448,67,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17322,448,74,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17335,449,51,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17341,449,57,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17347,449,63,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17287,448,39,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17288,448,40,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])}]}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16455,433,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16467,433,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16454,433,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16455,433,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16395,432,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16407,432,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16394,432,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16395,432,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16338,431,41,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16347,431,50,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16337,431,40,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16338,431,41,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16280,430,45,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16293,430,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16279,430,44,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16280,430,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16219,429,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16231,429,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16218,429,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16219,429,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16096,427,38,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16105,427,47,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16123,427,65,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16150,428,47,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16160,428,57,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16095,427,37,78])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16096,427,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16106,427,48,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16120,427,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16105,427,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16106,427,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15963,424,38,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15972,424,47,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15990,424,65,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16016,425,47,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16026,425,57,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15962,424,37,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15963,424,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15973,424,48,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15987,424,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15972,424,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15973,424,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15670,416,23,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15678,416,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15680,416,33,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15684,416,37,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15693,416,46,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15695,416,48,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15697,416,50,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15683,416,36,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15684,416,37,8])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15452,411,19,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15463,411,30,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15471,411,38,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15479,411,46,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15516,412,30,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15575,413,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15607,414,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15643,415,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15451,411,18,194])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15452,411,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15517,412,31,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15529,412,43,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15540,412,54,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15542,412,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15516,412,30,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15517,412,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15335,408,22,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15343,408,30,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15346,408,33,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15361,409,24,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15371,409,34,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15384,409,47,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15404,410,34,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15417,410,47,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15360,409,23,70])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15372,409,35,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15380,409,43,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15371,409,34,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15372,409,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15385,409,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15393,409,56,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15384,409,47,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15385,409,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15405,410,35,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15413,410,43,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15404,410,34,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15405,410,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15418,410,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15426,410,56,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15417,410,47,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15418,410,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15226,406,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15230,406,27,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15232,406,29,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15261,406,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15230,406,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15233,406,30,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15249,406,46,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15232,406,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15233,406,30,15])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15271,407,27,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15279,407,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15281,407,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[7],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15285,407,41,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15296,407,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15284,407,40,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"else":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14349,383,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14354,383,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14356,383,37,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14389,383,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14354,383,35,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14357,383,38,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14373,383,54,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14356,383,37,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14357,383,38,15])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14349,383,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14400,384,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14407,384,42,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14420,384,55,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14400,384,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14421,384,56,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14426,384,61,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14433,384,68,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14420,384,55,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14421,384,56,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14349,383,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14450,385,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14457,385,42,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14470,385,55,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14450,385,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14471,385,56,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14476,385,61,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14483,385,68,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14470,385,55,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14471,385,56,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14524,386,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14532,386,38,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14534,386,40,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14549,387,32,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14565,388,32,63]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14633,390,32,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14655,391,32,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14548,387,31,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14549,387,32,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14566,388,33,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14576,388,43,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14597,389,43,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14565,388,32,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14566,388,33,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14577,388,44,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14585,388,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14576,388,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14577,388,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14598,389,44,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14613,389,59,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14625,389,71,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14597,389,43,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14614,389,60,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14622,389,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14613,389,59,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14614,389,60,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14634,390,33,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14648,390,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14633,390,32,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14634,390,33,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14656,391,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14669,391,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14655,391,32,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14656,391,33,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14705,392,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14710,392,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14712,392,37,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14745,392,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14710,392,35,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14713,392,38,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14729,392,54,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14712,392,37,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14713,392,38,15])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14705,392,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14756,393,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14763,393,42,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14776,393,55,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14756,393,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14777,393,56,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14782,393,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14788,393,67,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14776,393,55,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14777,393,56,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14705,392,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14806,394,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14813,394,42,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14826,394,55,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14806,394,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14827,394,56,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14832,394,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14838,394,67,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14826,394,55,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14827,394,56,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14880,395,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14888,395,38,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14890,395,40,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14905,396,32,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14920,397,32,63]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14988,399,32,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15010,400,32,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14904,396,31,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14905,396,32,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14921,397,33,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14931,397,43,30]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14971,398,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14920,397,32,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14921,397,33,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14932,397,44,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14947,397,59,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14959,397,71,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14931,397,43,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14948,397,60,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14956,397,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14947,397,59,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14948,397,60,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14972,398,44,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14980,398,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14971,398,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14972,398,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14989,399,33,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15003,399,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14988,399,32,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14989,399,33,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15011,400,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15024,400,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15010,400,32,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15011,400,33,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},{"$":"toplevel","depth":5,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15065,401,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15073,401,43,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15075,401,45,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15088,402,37,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15099,402,48,51]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15157,404,48,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15181,405,48,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15087,402,36,111])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15088,402,37,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15100,402,49,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15115,402,64,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15136,403,64,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15148,403,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15099,402,48,51])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15116,402,65,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15124,402,73,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15115,402,64,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15116,402,65,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15137,403,65,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15145,403,73,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15136,403,64,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15137,403,65,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15158,404,49,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15172,404,63,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15157,404,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15158,404,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15182,405,49,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15195,405,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15181,405,48,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15182,405,49,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])}]}}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14245,381,27,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14257,381,39,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14272,381,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14244,381,26,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14245,381,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14176,380,27,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14188,380,39,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14203,380,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14175,380,26,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14176,380,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13944,376,21,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13948,376,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13953,376,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13955,376,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13957,376,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13953,376,30,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13958,376,35,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13974,376,51,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13957,376,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13958,376,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13948,376,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14000,377,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14007,377,37,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14011,377,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14000,377,30,6])},"rands":[{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14012,377,42,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14027,377,57,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14011,377,41,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86])}]}}},"then":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14094,379,25,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14098,379,29,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14134,379,65,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14093,379,24,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14094,379,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14099,379,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14107,379,38,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14111,379,42,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14117,379,48,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14119,379,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14110,379,41,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14111,379,42,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13676,372,21,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13680,372,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13685,372,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13687,372,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13689,372,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13685,372,30,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13690,372,35,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13706,372,51,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13689,372,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13690,372,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13680,372,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13732,373,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13739,373,37,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13743,373,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13732,373,30,6])},"rands":[{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13744,373,42,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13759,373,57,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13743,373,41,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86])}]}}},"then":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13868,375,25,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13872,375,29,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13908,375,65,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13867,375,24,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13868,375,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13873,375,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13881,375,38,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13885,375,42,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13891,375,48,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13893,375,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13884,375,41,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13885,375,42,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13561,369,13,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13565,369,17,73]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13642,371,17,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13560,369,12,93])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13561,369,13,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13566,369,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13574,369,26,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13583,370,20,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13594,370,31,27]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13622,370,59,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13624,370,61,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13582,370,19,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13583,370,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13595,370,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13607,370,44,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13594,370,31,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13595,370,32,11])},"rands":[{"$":"constant","value":"screen-left"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13443,365,13,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13447,365,17,74]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13525,367,17,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13442,365,12,94])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13443,365,13,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13448,365,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13456,365,26,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13465,366,20,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13476,366,31,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13505,366,60,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13507,366,62,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13464,366,19,56])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13465,366,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13477,366,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13489,366,44,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13476,366,31,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13477,366,32,11])},"rands":[{"$":"constant","value":"screen-right"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13367,363,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13371,363,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13377,363,34,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13371,363,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13401,363,58,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13406,363,63,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13400,363,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13401,363,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13290,362,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13294,362,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13300,362,34,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13294,362,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13324,362,58,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13329,362,63,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13323,362,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13324,362,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13186,360,20,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13197,360,31,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13245,361,31,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13255,361,41,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13185,360,19,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13186,360,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13198,360,32,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13208,360,42,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13220,360,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13197,360,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13198,360,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13209,360,43,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13211,360,45,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13217,360,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13208,360,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13209,360,43,1])},"rands":[{"$":"toplevel","depth":8,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13211,360,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13221,360,55,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13223,360,57,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13230,360,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13220,360,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13221,360,55,1])},"rands":[{"$":"toplevel","depth":8,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13223,360,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"center"}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17571,458,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",17571,458,9,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17574,458,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17578,458,16,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17580,458,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17582,458,20,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17577,458,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17578,458,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17622,460,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",17622,460,9,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17627,460,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17631,460,18,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17635,460,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17630,460,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17631,460,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17636,460,23,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17638,460,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17640,460,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17635,460,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17636,460,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17641,460,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17643,460,30,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17646,460,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17640,460,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17641,460,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17643,460,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17692,462,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",17692,462,9,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17699,462,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17703,462,20,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17707,462,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17702,462,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17703,462,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17708,462,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17710,462,27,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17712,462,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17707,462,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17708,462,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17713,462,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17715,462,32,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17718,462,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17712,462,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17713,462,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17715,462,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17765,464,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",17765,464,9,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17773,464,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17777,464,21,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17781,464,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17776,464,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17777,464,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17782,464,26,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17784,464,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17786,464,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17781,464,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17782,464,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17787,464,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17789,464,33,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17792,464,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17786,464,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17787,464,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17789,464,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}}]}}, 'provides': ["score","string->image","type","tangent","sq","start","sine","number->image","put-image","overlay-at","assert-equal","cosine"]}; +window.COLLECTIONS["bootstrap/bootstrap-gtp-teachpack"] = { 'name': "bootstrap/bootstrap-gtp-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"dangerImgs"},{"$":"global-bucket","value":"origTargets"},{"$":"global-bucket","value":"origDangers"},{"$":"global-bucket","value":"update-danger*"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"onscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"dangerSource"},{"$":"global-bucket","value":"update-danger"},{"$":"global-bucket","value":"targetSource"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"dangers"},{"$":"global-bucket","value":"keypress*"},{"$":"global-bucket","value":"sources"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"in-domain?"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"safer-rectangle"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-dangers"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"score"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"safer-triangle"},{"$":"global-bucket","value":"safer-star"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"random-posn"},{"$":"global-bucket","value":"safer-circle"},{"$":"global-bucket","value":"safer-ellipse"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"move-all"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"check-collision"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"being-source"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"assert-equal"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"*functions-complained-about*"},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("triangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("raise"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("display"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("format"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("ellipse"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("error"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("circle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1093,38,8,28])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1123,38,38,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1127,38,42,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1122,38,37,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1122,38,37,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1123,38,38,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1128,38,43,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1127,38,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1127,38,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1128,38,43,9])},"rands":[]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1151,40,9,12])}],"body":{"$":"lam","name":types.symbol("assert-equal"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",1151,40,9,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1164,40,22,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1179,40,37,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1203,41,22,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1217,41,36,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1231,41,50,6])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1242,42,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1246,42,7,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1253,42,14,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1268,42,29,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1246,42,7,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1245,42,6,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1291,43,7,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1299,43,15,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1290,43,6,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1290,43,6,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1291,43,7,7])},"rands":[{"$":"constant","value":""}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1319,44,7,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1334,45,7,519]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1318,44,6,536])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1318,44,6,536])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1319,44,7,7])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1335,45,8,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1339,45,12,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1346,45,19,27]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1374,45,47,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1339,45,12,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1347,45,20,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1354,45,27,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1359,45,32,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1346,45,19,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1346,45,19,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1347,45,20,6])},"rands":[{"$":"constant","value":"~a"},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1375,45,48,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1382,45,55,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1387,45,60,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1374,45,47,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1374,45,47,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1375,45,48,6])},"rands":[{"$":"constant","value":"~a"},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1338,45,11,65])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1409,46,12,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1421,47,12,128]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1555,52,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1569,52,26,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1581,53,12,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1601,54,12,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1408,46,11,208])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1408,46,11,208])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1409,46,12,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1422,47,13,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1442,48,13,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1475,49,13,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1505,50,13,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1530,51,13,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1421,47,12,128])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1421,47,12,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1422,47,13,13])},"rands":[{"$":"constant","value":"EXAMPLE CHECK FAILED: \n"},{"$":"constant","value":" For ~a at line ~a\n"},{"$":"constant","value":" Expected: ~s\n"},{"$":"constant","value":" But got: ~s\n"}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1622,55,12,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1635,56,12,136]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1777,61,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1791,61,26,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1803,62,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1817,62,26,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1837,63,12,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1621,55,11,231])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1621,55,11,231])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1622,55,12,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",1636,56,13,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1656,57,13,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1689,58,13,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1719,59,13,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1752,60,13,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",1635,56,12,136])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",1635,56,12,136])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",1636,56,13,13])},"rands":[{"$":"constant","value":"EXAMPLE CHECK FAILED: \n"},{"$":"constant","value":" For ~a at line ~a\n"},{"$":"constant","value":" Expected: ~a => ~s\n"},{"$":"constant","value":" But got: ~s\n"}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3189,112,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3189,112,9,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3194,112,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3212,114,5,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3223,114,16,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3212,114,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3211,114,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3245,115,5,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3253,115,13,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3245,115,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3244,115,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3273,116,5,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3281,116,13,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3273,116,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3272,116,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3301,117,5,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3308,117,12,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3301,117,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3300,117,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3327,118,5,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3336,118,14,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3327,118,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3326,118,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3357,119,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3363,119,11,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3357,119,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3356,119,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3385,120,5,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3393,120,13,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3385,120,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3384,120,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3412,121,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3201,113,2,233])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3522,125,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3522,125,9,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3536,125,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3542,126,3,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3547,126,8,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3549,126,10,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3552,126,13,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3541,126,2,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3541,126,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3542,126,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3647,130,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3647,130,9,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3661,130,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3667,131,3,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3681,131,17,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3666,131,2,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3666,131,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3667,131,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3682,131,18,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3697,131,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3681,131,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3681,131,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3682,131,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3842,136,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3842,136,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3852,136,19,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3856,136,23,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3858,136,25,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3864,137,3,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3876,137,15,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3880,137,19,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3882,137,21,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3892,137,31,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3863,137,2,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3863,137,2,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3864,137,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3883,137,22,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3885,137,24,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3889,137,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3882,137,21,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3882,137,21,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3883,137,22,1])},"rands":[{"$":"constant","value":480},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",3893,137,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3905,137,44,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3909,137,48,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3892,137,31,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",3892,137,31,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3893,137,32,11])},"rands":[{"$":"constant","value":640},{"$":"constant","value":480}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",3977,140,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",3977,140,9,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3988,140,20,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",3999,140,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4001,140,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4003,140,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4018,141,3,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4029,141,14,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4040,141,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4042,141,27,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4050,141,35,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4017,141,2,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4017,141,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4018,141,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4043,141,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4045,141,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4047,141,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4042,141,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4042,141,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4043,141,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4073,143,9,12])}],"body":{"$":"lam","name":types.symbol("safer-circle"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",4073,143,9,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4086,143,22,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4091,143,27,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4096,143,32,5])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4116,145,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4121,145,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4129,145,18,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4121,145,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4120,145,9,14])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4116,145,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4136,145,25,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4139,145,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4145,145,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4136,145,25,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4135,145,24,15])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4115,145,4,36])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4157,146,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4163,146,11,122]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4156,146,4,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4156,146,4,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4157,146,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4164,146,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4178,146,26,84]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4263,146,111,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4163,146,11,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4163,146,11,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4164,146,12,13])},"rands":[{"$":"constant","value":"circle: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4264,146,112,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4279,146,127,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4263,146,111,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4263,146,111,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4264,146,112,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4292,147,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4298,147,10,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4305,147,17,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4310,147,22,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4315,147,27,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4297,147,9,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4297,147,9,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4298,147,10,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4105,144,2,218])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4334,148,9,14])}],"body":{"$":"lam","name":types.symbol("safer-triangle"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",4334,148,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4349,148,24,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4354,148,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4359,148,34,5])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4379,150,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4384,150,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4392,150,18,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4384,150,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4383,150,9,14])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4379,150,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4399,150,25,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4402,150,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4408,150,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4399,150,25,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4398,150,24,15])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4378,150,4,36])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4420,151,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4426,151,11,124]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4419,151,4,132])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4419,151,4,132])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4420,151,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4427,151,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4441,151,26,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4528,151,113,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4426,151,11,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4426,151,11,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4427,151,12,13])},"rands":[{"$":"constant","value":"triangle: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4529,151,114,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4544,151,129,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4528,151,113,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4528,151,113,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4529,151,114,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4557,152,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4563,152,10,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4572,152,19,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4577,152,24,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4582,152,29,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4562,152,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4562,152,9,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4563,152,10,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4368,149,2,222])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4601,153,9,15])}],"body":{"$":"lam","name":types.symbol("safer-rectangle"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",4601,153,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4617,153,25,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4623,153,31,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4630,153,38,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4635,153,43,5])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4655,155,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4660,155,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4668,155,18,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4660,155,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4659,155,9,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4655,155,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4676,155,26,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4679,155,29,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4685,155,35,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4676,155,26,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4675,155,25,16])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4654,155,4,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4698,156,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4704,156,11,126]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4697,156,4,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4697,156,4,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4698,156,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4705,156,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4719,156,26,87]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4807,156,114,22]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4704,156,11,126])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4704,156,11,126])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4705,156,12,13])},"rands":[{"$":"constant","value":"rectangle: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4808,156,115,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4823,156,130,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4807,156,114,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4807,156,114,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4808,156,115,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4838,157,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4843,157,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4851,157,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4843,157,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4842,157,9,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4838,157,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4860,157,27,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4863,157,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4869,157,36,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4860,157,27,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4859,157,26,17])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4837,157,4,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4883,158,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4889,158,11,128]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4882,158,4,136])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4882,158,4,136])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4883,158,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4890,158,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4904,158,26,88]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4993,158,115,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4889,158,11,128])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4889,158,11,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4890,158,12,13])},"rands":[{"$":"constant","value":"rectangle: expected as second argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4994,158,116,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5009,158,131,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4993,158,115,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4993,158,115,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4994,158,116,14])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5024,159,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5030,159,10,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5040,159,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5046,159,26,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5053,159,33,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5058,159,38,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5029,159,9,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5029,159,9,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5030,159,10,9])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422]),types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",4644,154,2,422])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5077,160,9,13])}],"body":{"$":"lam","name":types.symbol("safer-ellipse"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",5077,160,9,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5091,160,23,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5097,160,29,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5104,160,36,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5109,160,41,5])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5129,162,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5134,162,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5142,162,18,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5134,162,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5133,162,9,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5129,162,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5150,162,26,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5153,162,29,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5159,162,35,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5150,162,26,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5149,162,25,16])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5128,162,4,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5172,163,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5178,163,11,124]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5171,163,4,132])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5171,163,4,132])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5172,163,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5179,163,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5193,163,26,85]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5279,163,112,22]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5178,163,11,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5178,163,11,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5179,163,12,13])},"rands":[{"$":"constant","value":"ellipse: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5280,163,113,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5295,163,128,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5279,163,112,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5279,163,112,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5280,163,113,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5310,164,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5315,164,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5323,164,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5315,164,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5314,164,9,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5310,164,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5332,164,27,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5335,164,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5341,164,36,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5332,164,27,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5331,164,26,17])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5309,164,4,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5355,165,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5361,165,11,126]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5354,165,4,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5354,165,4,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5355,165,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5362,165,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5376,165,26,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5463,165,113,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5361,165,11,126])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5361,165,11,126])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5362,165,12,13])},"rands":[{"$":"constant","value":"ellipse: expected as second argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5464,165,114,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5479,165,129,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5463,165,113,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5463,165,113,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5464,165,114,14])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5494,166,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5500,166,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5508,166,18,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5514,166,24,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5521,166,31,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5526,166,36,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5499,166,9,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5499,166,9,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5500,166,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5118,161,2,416])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5545,167,9,10])}],"body":{"$":"lam","name":types.symbol("safer-star"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",5545,167,9,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5556,167,20,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5563,167,27,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5571,167,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5578,167,42,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5583,167,47,5])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5603,169,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5608,169,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5616,169,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5608,169,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5607,169,9,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5603,169,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5625,169,27,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5628,169,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5634,169,36,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5625,169,27,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5624,169,26,17])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5602,169,4,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5648,170,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5654,170,11,122]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5647,170,4,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5647,170,4,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5648,170,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5655,170,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5669,170,26,82]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5752,170,109,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5654,170,11,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5654,170,11,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5655,170,12,13])},"rands":[{"$":"constant","value":"star: expected as first argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5753,170,110,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5768,170,125,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5752,170,109,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5752,170,109,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5753,170,110,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5784,171,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5789,171,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5797,171,18,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5789,171,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5788,171,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5784,171,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5807,171,28,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5810,171,31,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5816,171,37,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5807,171,28,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5806,171,27,18])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5783,171,4,42])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5831,172,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5837,172,11,124]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5830,172,4,132])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5830,172,4,132])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5831,172,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5838,172,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5852,172,26,83]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5936,172,110,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5837,172,11,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5837,172,11,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5838,172,12,13])},"rands":[{"$":"constant","value":"star: expected as second argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5937,172,111,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5952,172,126,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5936,172,110,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5936,172,110,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5937,172,111,14])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5969,173,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5974,173,10,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5982,173,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5974,173,10,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5973,173,9,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5969,173,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5991,173,27,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5994,173,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6000,173,36,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5991,173,27,2])},"rands":[{"$":"constant","value":10000},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5990,173,26,17])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5968,173,4,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6014,174,5,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6020,174,11,122]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6013,174,4,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6013,174,4,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6014,174,5,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6021,174,12,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6035,174,26,82]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6118,174,109,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6020,174,11,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6020,174,11,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6021,174,12,13])},"rands":[{"$":"constant","value":"star: expected as third argument, given: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6119,174,110,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6134,174,125,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6118,174,109,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6118,174,109,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6119,174,110,14])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6149,175,4,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6155,175,10,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6160,175,15,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6167,175,22,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6175,175,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6182,175,37,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6187,175,42,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6154,175,9,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6154,175,9,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6155,175,10,4])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603]),types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",5592,168,2,603])}]}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6219,178,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6238,179,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6258,180,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6290,181,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6303,181,21,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6307,181,25,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6302,181,20,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6302,181,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6303,181,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6325,182,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6337,182,20,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6341,182,24,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6336,182,19,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6336,182,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6337,182,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6342,182,25,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6352,182,35,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6358,182,41,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6365,182,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6373,182,56,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6341,182,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6341,182,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6342,182,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6352,182,35,5])},{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6358,182,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6392,183,8,5])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6399,183,15,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6403,183,19,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6398,183,14,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6398,183,14,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6399,183,15,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6446,185,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",6446,185,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6456,185,19,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6463,185,26,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6455,185,18,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6455,185,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6456,185,19,6])},"rands":[{"$":"constant","value":200}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6640,192,15,5])},{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":3},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6625,192,0,43])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("source")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6786,195,15,5])},{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":7},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("dangers")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},"rands":[{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6771,195,0,67])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6879,198,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6888,198,17,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6896,198,25,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6903,198,32,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6887,198,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6887,198,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6888,198,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6896,198,25,6])},{"$":"toplevel","depth":2,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6903,198,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6924,199,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",6933,199,17,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6941,199,25,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6948,199,32,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",6932,199,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",6932,199,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6933,199,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6941,199,25,6])},{"$":"toplevel","depth":2,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",6948,199,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7016,202,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7016,202,9,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7028,202,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7035,202,28,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7045,202,38,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7059,202,52,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7034,202,27,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7034,202,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7035,202,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7046,202,39,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7053,202,46,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7045,202,38,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7045,202,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7046,202,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7060,202,53,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7062,202,55,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7069,202,62,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7059,202,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7059,202,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7060,202,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7062,202,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7070,202,63,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7072,202,65,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7069,202,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7069,202,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7070,202,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7073,202,66,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7080,202,73,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7072,202,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7072,202,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7073,202,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7206,206,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7206,206,9,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7217,206,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7223,206,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7237,207,2,182]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7256,207,21,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7237,207,2,182])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7237,207,2,182])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7237,207,2,182]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7244,207,9,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7296,208,5,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7308,208,17,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7348,209,17,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7369,209,38,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7407,210,17,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7295,208,4,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7295,208,4,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7296,208,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7309,208,18,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7323,208,32,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7308,208,17,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7308,208,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7309,208,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7349,209,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7356,209,25,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7348,209,17,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7348,209,17,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7349,209,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7370,209,39,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7377,209,46,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7369,209,38,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7369,209,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7370,209,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7257,207,22,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7269,207,34,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7256,207,21,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7256,207,21,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7257,207,22,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7270,207,35,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7281,207,46,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7269,207,34,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7269,207,34,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7270,207,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7542,214,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7542,214,9,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7553,214,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7565,215,9,102]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7579,215,23,87]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7565,215,9,102])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7565,215,9,102])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7565,215,9,102]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7566,215,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7677,217,9,318]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7685,217,17,309]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7677,217,9,318])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7677,217,9,318])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",7677,217,9,318]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7678,217,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8005,225,9,74]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8020,226,10,58]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8005,225,9,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8005,225,9,74])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8005,225,9,74]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8006,225,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8086,227,5,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8098,227,17,42]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8141,227,60,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8144,227,63,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8164,228,17,66]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8085,227,4,146])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8085,227,4,146])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8086,227,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8099,227,18,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8104,227,23,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8117,227,36,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8120,227,39,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8098,227,17,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8098,227,17,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8099,227,18,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8121,227,40,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8127,227,46,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8120,227,39,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8120,227,39,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8121,227,40,5])},"rands":[{"$":"toplevel","depth":8,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8127,227,46,11])}]}}}]}}},{"$":"constant","value":10},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8165,228,18,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8171,228,24,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8182,228,35,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8219,228,72,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8164,228,17,66])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8164,228,17,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8165,228,18,5])},"rands":[{"$":"toplevel","depth":7,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8171,228,24,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8183,228,36,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8195,228,48,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8214,228,67,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8216,228,69,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8182,228,35,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8182,228,35,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8183,228,36,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8196,228,49,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8202,228,55,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8195,228,48,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8195,228,48,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8196,228,49,5])},"rands":[{"$":"toplevel","depth":11,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8202,228,55,10])}]}}},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8021,226,11,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8028,226,18,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8046,226,36,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8064,226,54,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8020,226,10,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8020,226,10,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8021,226,11,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8029,226,19,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8043,226,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8028,226,18,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8028,226,18,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8029,226,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8047,226,37,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8061,226,51,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8046,226,36,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8046,226,36,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8047,226,37,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8065,226,55,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8070,226,60,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8064,226,54,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8064,226,54,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8065,226,55,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7686,217,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7690,217,22,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7692,217,24,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7708,217,40,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7690,217,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7693,217,25,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7705,217,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7692,217,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7692,217,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7693,217,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7689,217,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7733,218,22,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7744,218,33,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7807,219,33,104]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7917,222,33,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7732,218,21,223])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7732,218,21,223])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7733,218,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7745,218,34,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7756,218,45,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7744,218,33,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7744,218,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7745,218,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7757,218,46,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7770,218,59,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7756,218,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7756,218,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7757,218,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7808,219,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7813,219,39,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7815,219,41,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7851,220,39,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7887,221,39,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7895,221,47,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7807,219,33,104])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7807,219,33,104])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7808,219,34,4])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7816,219,42,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7818,219,44,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7822,219,48,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7815,219,41,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7815,219,41,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7816,219,42,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7823,219,49,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7835,219,61,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7822,219,48,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7822,219,48,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7823,219,49,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7852,220,40,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7854,220,42,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7858,220,46,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7851,220,39,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7851,220,39,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7852,220,40,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7859,220,47,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7871,220,59,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7858,220,46,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7858,220,46,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7859,220,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":9,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7895,221,47,15])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7918,222,34,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7931,222,47,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7917,222,33,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7917,222,33,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7918,222,34,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7932,222,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7945,222,61,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7931,222,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7931,222,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7932,222,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7978,224,22,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7991,224,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7977,224,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7977,224,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7978,224,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7580,215,24,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7594,215,38,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7610,215,54,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7633,216,38,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7579,215,23,87])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7579,215,23,87])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7580,215,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7595,215,39,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7607,215,51,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7594,215,38,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7594,215,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7595,215,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7634,216,39,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7649,216,54,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7633,216,38,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7633,216,38,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7634,216,39,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",7650,216,55,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7662,216,67,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",7649,216,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",7649,216,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",7650,216,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8244,230,9,15])}],"body":{"$":"lam","name":types.symbol("check-collision"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8244,230,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8260,230,25,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8267,230,32,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8274,230,39,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8287,231,3,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8291,231,7,74]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8286,231,2,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8286,231,2,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8287,231,3,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8292,231,8,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8299,231,15,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8291,231,7,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8291,231,7,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8292,231,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8300,231,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8307,231,23,40]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8357,232,23,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8299,231,15,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8299,231,15,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8300,231,16,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8308,231,24,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8316,231,32,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8324,231,40,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8333,231,49,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8340,231,56,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8323,231,39,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8323,231,39,23])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8404,235,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8404,235,9,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8409,235,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8417,236,3,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8426,236,12,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8430,236,16,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8416,236,2,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8416,236,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8417,236,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8431,236,17,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8438,236,24,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8430,236,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8430,236,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8431,236,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8439,236,25,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8446,236,32,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8438,236,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8438,236,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8439,236,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8561,240,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8561,240,9,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8569,240,17,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8571,240,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8578,241,3,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8588,242,3,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8621,243,3,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8577,241,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8577,241,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8578,241,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8589,242,4,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8597,242,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8603,242,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8610,242,25,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8614,242,29,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8602,242,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8602,242,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8603,242,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8635,245,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8635,245,9,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8639,245,13,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8641,245,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8647,246,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8651,246,7,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8657,246,13,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8651,246,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8650,246,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8661,246,17,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8669,246,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8671,246,27,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8660,246,16,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8660,246,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8661,246,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8675,246,31,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8682,246,38,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8684,246,40,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8674,246,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8674,246,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8675,246,31,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8861,250,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8861,250,9,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8873,250,21,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8875,250,23,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8898,252,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8903,252,11,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8905,252,13,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8925,252,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8903,252,11,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8906,252,14,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8922,252,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8905,252,13,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8905,252,13,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8906,252,14,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8902,252,10,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8898,252,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8929,252,37,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8933,252,41,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8941,252,49,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8929,252,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8942,252,50,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8947,252,55,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8953,252,61,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8941,252,49,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8941,252,49,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8942,252,50,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8928,252,36,35])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8897,252,5,67])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",8971,253,6,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8979,253,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8983,253,18,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8994,253,29,39]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9043,254,29,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9061,254,47,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8982,253,17,96])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8982,253,17,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8983,253,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8995,253,30,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9005,253,40,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9017,253,52,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8994,253,29,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8994,253,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8995,253,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9006,253,41,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9014,253,49,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9005,253,40,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9005,253,40,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9006,253,41,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9018,253,53,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9020,253,55,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9017,253,52,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9017,253,52,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9021,253,56,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9029,253,64,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9020,253,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9020,253,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9021,253,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9044,254,30,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9058,254,44,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9043,254,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9043,254,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9044,254,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9062,254,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9075,254,61,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9061,254,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9061,254,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9062,254,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9087,255,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9092,255,11,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9094,255,13,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9114,255,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9092,255,11,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9095,255,14,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9111,255,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9094,255,13,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9094,255,13,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9095,255,14,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9091,255,10,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9087,255,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9118,255,37,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9122,255,41,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9130,255,49,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9118,255,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9131,255,50,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9136,255,55,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9143,255,62,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9130,255,49,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9130,255,49,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9131,255,50,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9117,255,36,35])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9086,255,5,67])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9160,256,6,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9168,256,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9172,256,18,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9183,256,29,39]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9232,257,29,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9250,257,47,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9171,256,17,96])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9171,256,17,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9172,256,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9184,256,30,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9194,256,40,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9210,256,56,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9183,256,29,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9183,256,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9184,256,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9195,256,41,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9197,256,43,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9194,256,40,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9194,256,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9198,256,44,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9206,256,52,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9197,256,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9197,256,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9198,256,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9211,256,57,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9219,256,65,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9210,256,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9210,256,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9211,256,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9233,257,30,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9247,257,44,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9232,257,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9232,257,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9233,257,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9251,257,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9264,257,61,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9250,257,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9250,257,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9251,257,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9276,258,6,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9278,258,8,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9298,258,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9276,258,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9279,258,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9295,258,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9278,258,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9278,258,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9279,258,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9275,258,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9307,259,6,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9315,259,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9319,259,18,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9330,259,29,27]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9367,260,29,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9385,260,47,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9318,259,17,84])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9318,259,17,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9319,259,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9331,259,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9333,259,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9345,259,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9330,259,29,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9330,259,29,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9334,259,33,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9342,259,41,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9333,259,32,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9333,259,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9334,259,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9346,259,45,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9354,259,53,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9345,259,44,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9345,259,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9346,259,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9368,260,30,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9382,260,44,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9367,260,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9367,260,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9368,260,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9386,260,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9399,260,61,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9385,260,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9385,260,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9386,260,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9411,261,6,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9413,261,8,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9433,261,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9411,261,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9414,261,9,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9430,261,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9413,261,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9413,261,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9414,261,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":3}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9410,261,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9442,262,6,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9450,262,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9454,262,18,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9465,262,29,44]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9518,263,29,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9536,263,47,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9453,262,17,100])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9453,262,17,100])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9454,262,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9466,262,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9468,262,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9480,262,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9492,262,56,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9465,262,29,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9465,262,29,44])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9469,262,33,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9477,262,41,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9468,262,32,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9468,262,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9469,262,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9481,262,45,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9489,262,53,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9480,262,44,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9480,262,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9481,262,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9493,262,57,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9506,262,70,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9492,262,56,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9492,262,56,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9493,262,57,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9519,263,30,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9533,263,44,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9518,263,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9518,263,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9519,263,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9537,263,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9550,263,61,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9536,263,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9536,263,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9537,263,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670]),types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",8886,251,2,670])}]}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9569,266,9,11])}],"body":{"$":"lam","name":types.symbol("random-posn"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9569,266,9,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9581,266,21,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9591,267,2,1608]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9600,267,11,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9615,268,11,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9591,267,2,1608])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9591,267,2,1608])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",9591,267,2,1608]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9598,267,9,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9613,268,9,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9648,270,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9657,270,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9664,270,23,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9648,270,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9647,270,6,24])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9680,271,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9690,271,17,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9699,271,26,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9679,271,6,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9679,271,6,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9680,271,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9691,271,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9693,271,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9695,271,22,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9690,271,17,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9690,271,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9691,271,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9700,271,27,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9707,271,34,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9699,271,26,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9699,271,26,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9700,271,27,6])},"rands":[{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9707,271,34,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9724,272,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9733,272,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9740,272,23,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9724,272,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9723,272,6,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9757,273,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9767,273,17,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9779,273,29,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9756,273,6,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9756,273,6,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9757,273,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9768,273,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9770,273,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9772,273,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9767,273,17,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9767,273,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9768,273,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9772,273,22,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9780,273,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9787,273,37,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9779,273,29,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9779,273,29,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9780,273,30,6])},"rands":[{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9787,273,37,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9804,274,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9813,274,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9820,274,23,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9804,274,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9803,274,6,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9835,275,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9845,275,17,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9860,275,32,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9834,275,6,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9834,275,6,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9835,275,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9846,275,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9853,275,25,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9845,275,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9845,275,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9846,275,18,6])},"rands":[{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9853,275,25,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9861,275,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9863,275,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9865,275,37,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9860,275,32,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9860,275,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9861,275,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9865,275,37,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9882,276,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9891,276,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9898,276,23,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9882,276,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9881,276,6,26])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9916,277,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9926,277,17,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9941,277,32,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9915,277,6,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9915,277,6,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9916,277,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9927,277,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9934,277,25,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9926,277,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9926,277,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9927,277,18,6])},"rands":[{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9934,277,25,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9942,277,33,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9944,277,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9946,277,37,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9941,277,32,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9941,277,32,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9942,277,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9959,278,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9968,278,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9975,278,23,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9959,278,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom-left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9958,278,6,31])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9998,279,7,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10011,280,7,129]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9997,279,6,144])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9997,279,6,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9998,279,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10012,280,8,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10019,281,8,71]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10092,282,8,47]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10011,280,7,129])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10011,280,7,129])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10012,280,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10020,281,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10030,281,19,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10060,281,49,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10019,281,8,71])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10019,281,8,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10020,281,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10031,281,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10033,281,22,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10030,281,19,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10030,281,19,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10031,281,20,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10061,281,50,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10068,281,57,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10060,281,49,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10060,281,49,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10061,281,50,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10069,281,58,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10075,281,64,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10068,281,57,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10068,281,57,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10069,281,58,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10076,281,65,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10078,281,67,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10080,281,69,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10075,281,64,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10075,281,64,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10076,281,65,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10080,281,69,6])}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10093,282,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10103,282,19,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10133,282,49,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10092,282,8,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10092,282,8,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10093,282,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10104,282,20,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10111,282,27,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10103,282,19,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10103,282,19,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10104,282,20,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10112,282,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10118,282,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10111,282,27,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10111,282,27,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10112,282,28,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10119,282,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10121,282,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10123,282,39,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10118,282,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10118,282,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10119,282,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10123,282,39,5])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10134,282,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10136,282,52,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10133,282,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10133,282,49,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10134,282,50,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10150,283,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10159,283,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10166,283,23,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10150,283,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom-right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10149,283,6,32])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10189,284,7,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10201,285,7,125]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10188,284,6,139])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10188,284,6,139])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10189,284,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10202,285,8,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10208,286,8,47]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10257,287,8,68]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10201,285,7,125])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10201,285,7,125])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10202,285,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10209,286,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10219,286,19,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10249,286,49,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10208,286,8,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10208,286,8,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10209,286,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10220,286,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10222,286,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10228,286,28,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10219,286,19,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10219,286,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10220,286,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10222,286,22,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10229,286,29,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10231,286,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10233,286,33,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10228,286,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10228,286,28,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10229,286,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10233,286,33,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10250,286,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10252,286,52,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10249,286,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10249,286,49,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10250,286,50,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10258,287,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10268,287,19,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10295,287,46,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10257,287,8,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10257,287,8,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10258,287,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10269,287,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10271,287,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10277,287,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10268,287,19,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10268,287,19,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10269,287,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10271,287,22,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10296,287,47,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10303,287,54,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10295,287,46,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10295,287,46,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10296,287,47,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10304,287,55,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10310,287,61,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10303,287,54,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10303,287,54,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10304,287,55,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10311,287,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10313,287,64,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10315,287,66,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10310,287,61,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10310,287,61,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10311,287,62,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10315,287,66,6])}]}}}]}}}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10336,288,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10345,288,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10352,288,23,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10336,288,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top-left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10335,288,6,28])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10371,289,7,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10383,290,7,129]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10370,289,6,143])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10370,289,6,143])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10371,289,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10384,290,8,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10390,291,8,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10457,292,8,54]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10383,290,7,129])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10383,290,7,129])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10384,290,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10391,291,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10401,291,19,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10431,291,49,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10390,291,8,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10390,291,8,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10391,291,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10402,291,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10404,291,22,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10401,291,19,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10401,291,19,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10402,291,20,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10432,291,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10434,291,52,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10441,291,59,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10431,291,49,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10431,291,49,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10432,291,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10434,291,52,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10442,291,60,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10444,291,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10446,291,64,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10441,291,59,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10441,291,59,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10442,291,60,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10446,291,64,6])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10458,292,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10468,292,19,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10498,292,49,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10457,292,8,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10457,292,8,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10458,292,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10469,292,20,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10476,292,27,19]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10468,292,19,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10468,292,19,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10469,292,20,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10477,292,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10483,292,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10476,292,27,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10476,292,27,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10477,292,28,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10484,292,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10486,292,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10488,292,39,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10483,292,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10483,292,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10484,292,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10488,292,39,5])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10499,292,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10501,292,52,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10508,292,59,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10498,292,49,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10498,292,49,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10499,292,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10501,292,52,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10522,293,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10531,293,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10538,293,23,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10522,293,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top-right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10521,293,6,29])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10558,294,7,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10571,295,7,130]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10557,294,6,145])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10557,294,6,145])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10558,294,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10572,295,8,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10579,296,8,54]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10635,297,8,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10571,295,7,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10571,295,7,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10572,295,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10580,296,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10590,296,19,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10620,296,49,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10579,296,8,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10579,296,8,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10580,296,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10591,296,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10593,296,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10599,296,28,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10590,296,19,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10590,296,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10591,296,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10593,296,22,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10600,296,29,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10602,296,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10604,296,33,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10599,296,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10599,296,28,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10600,296,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10604,296,33,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10621,296,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10623,296,52,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10630,296,59,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10620,296,49,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10620,296,49,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10621,296,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10623,296,52,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10636,297,9,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10646,297,19,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10676,297,49,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10635,297,8,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10635,297,8,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10636,297,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10647,297,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10649,297,22,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10655,297,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10646,297,19,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10646,297,19,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10647,297,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10649,297,22,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10677,297,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10679,297,52,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10686,297,59,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10676,297,49,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10676,297,49,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10677,297,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10679,297,52,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10687,297,60,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10689,297,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10691,297,64,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10686,297,59,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10686,297,59,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10687,297,60,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10691,297,64,6])}]}}}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10711,298,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10720,298,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10727,298,23,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10711,298,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"onscreen"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10710,298,6,28])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10746,299,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10756,299,17,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10792,300,17,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10745,299,6,81])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10745,299,6,81])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10746,299,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10757,299,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10759,299,20,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10767,299,28,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10756,299,17,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10756,299,17,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10757,299,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10760,299,21,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10762,299,23,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10764,299,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10759,299,20,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10759,299,20,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10760,299,21,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10768,299,29,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10775,299,36,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10767,299,28,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10767,299,28,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10768,299,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10776,299,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10778,299,39,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10784,299,45,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10775,299,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10775,299,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10776,299,37,1])},"rands":[{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10778,299,39,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10793,300,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10795,300,20,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10803,300,28,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10792,300,17,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10792,300,17,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10793,300,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10796,300,21,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10798,300,23,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10800,300,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10795,300,20,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10795,300,20,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10796,300,21,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10804,300,29,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10811,300,36,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10803,300,28,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10803,300,28,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10804,300,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10812,300,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10814,300,39,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10821,300,46,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10811,300,36,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10811,300,36,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10812,300,37,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10814,300,39,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10835,301,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10844,301,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10851,301,23,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10835,301,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"screen-left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10834,301,6,31])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10873,302,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10883,302,17,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10897,302,31,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10872,302,6,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10872,302,6,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10873,302,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10884,302,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10886,302,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10892,302,26,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10883,302,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10883,302,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10884,302,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10886,302,20,5])},{"$":"constant","value":types.rational(1, 4)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10898,302,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10900,302,34,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10908,302,42,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10897,302,31,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10897,302,31,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10898,302,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10901,302,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10903,302,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10905,302,39,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10900,302,34,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10900,302,34,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10901,302,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10909,302,43,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10916,302,50,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10908,302,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10908,302,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10909,302,43,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10917,302,51,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10919,302,53,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10926,302,60,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10916,302,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10916,302,50,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10917,302,51,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10919,302,53,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10940,303,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10949,303,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10956,303,23,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10940,303,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"screen-right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10939,303,6,32])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10979,304,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10989,304,17,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11003,304,31,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10978,304,6,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10978,304,6,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10979,304,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",10990,304,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10992,304,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10998,304,26,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",10989,304,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",10989,304,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10990,304,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",10992,304,20,5])},{"$":"constant","value":types.rational(3, 4)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11004,304,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11006,304,34,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11014,304,42,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11003,304,31,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11003,304,31,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11004,304,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11007,304,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11009,304,37,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11011,304,39,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11006,304,34,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11006,304,34,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11007,304,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11015,304,43,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11022,304,50,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11014,304,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11014,304,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11015,304,43,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11023,304,51,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11025,304,53,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11032,304,60,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11022,304,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11022,304,50,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11023,304,51,1])},"rands":[{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11025,304,53,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11046,305,7,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11055,305,16,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11062,305,23,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11046,305,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"center"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11045,305,6,26])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11079,306,7,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11089,306,17,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11103,306,31,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11078,306,6,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11078,306,6,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11079,306,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11090,306,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11092,306,20,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11098,306,26,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11089,306,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11089,306,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11090,306,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11092,306,20,5])},{"$":"constant","value":types.rational(1, 2)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11104,306,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11106,306,34,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11113,306,41,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11103,306,31,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11103,306,31,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11104,306,32,1])},"rands":[{"$":"toplevel","depth":4,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11106,306,34,6])},{"$":"constant","value":types.rational(1, 2)}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11126,307,6,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11132,307,12,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11138,307,18,51]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11131,307,11,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11131,307,11,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11132,307,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11139,307,19,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11146,307,26,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11182,307,62,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11138,307,18,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11138,307,18,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11139,307,19,6])},"rands":[{"$":"constant","value":"don't know what position ~a means"},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9635,269,4,1563])}]}}}}}}}}}}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",9601,267,12,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",9600,267,11,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",9600,267,11,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",9601,267,12,7])},"rands":[]}}},{"$":"constant","value":types.rational(1, 3)}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11334,313,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",11334,313,9,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11340,313,15,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11346,313,21,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11371,315,6,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11377,315,12,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11371,315,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11370,315,5,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11391,316,5,101]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11405,316,19,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11391,316,5,101])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11391,316,5,101])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",11391,316,5,101]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11398,316,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11430,317,8,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11441,317,19,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11462,317,40,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11484,317,62,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11429,317,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11429,317,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11430,317,8,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11442,317,20,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11454,317,32,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11441,317,19,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11441,317,19,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11442,317,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11463,317,41,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11477,317,55,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11462,317,40,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11462,317,40,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11463,317,41,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11406,316,20,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11411,316,25,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11405,316,19,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11405,316,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11406,316,20,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11500,318,6,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11508,318,14,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11500,318,6,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11499,318,5,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11523,319,6,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11534,319,17,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11556,319,39,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11578,319,61,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11522,319,5,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11522,319,5,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11523,319,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11535,319,18,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11547,319,30,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11534,319,17,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11534,319,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11535,319,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11557,319,40,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11571,319,54,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11556,319,39,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11556,319,39,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11557,319,40,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11593,320,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11599,320,11,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11605,320,17,22]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11598,320,10,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11598,320,10,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11599,320,11,5])},"rands":[{"$":"constant","value":"strange being source"}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11358,314,3,272])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11795,324,9,8])}],"body":{"$":"lam","name":types.symbol("move-all"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",11795,324,9,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11804,324,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11811,324,25,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11816,324,30,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11827,324,41,7])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11839,325,3,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11843,325,7,98]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11950,329,7,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11838,325,2,119])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11838,325,2,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11839,325,3,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",11844,325,8,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11852,325,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11859,326,10,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11863,326,14,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11874,326,25,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11886,326,37,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11875,326,26,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11883,326,34,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11874,326,25,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11874,326,25,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11875,326,26,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11887,326,38,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11895,326,46,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11886,326,37,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11886,326,37,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11887,326,38,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11862,326,13,36])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11907,327,14,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11912,327,19,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11906,327,13,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11906,327,13,8])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",11923,328,14,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11929,328,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11931,328,22,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",11922,328,13,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",11922,328,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",11923,328,14,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12190,334,9,8])}],"body":{"$":"lam","name":types.symbol("keypress"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",12190,334,9,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12199,334,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12201,334,20,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12205,334,24,13])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12234,336,6,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12243,336,15,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12247,336,19,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12234,336,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"release"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12233,336,5,24])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12266,337,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12277,338,6,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12288,338,17,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12323,339,17,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12358,340,17,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12412,341,17,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12442,342,17,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12475,343,17,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12508,344,17,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12276,338,5,248])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12276,338,5,248])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12277,338,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12289,338,18,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12303,338,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12288,338,17,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12288,338,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12289,338,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12324,339,18,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12338,339,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12323,339,17,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12323,339,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12324,339,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12359,340,18,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12373,340,32,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12390,340,49,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12358,340,17,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12358,340,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12374,340,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12387,340,46,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12373,340,32,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12373,340,32,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12374,340,33,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12413,341,18,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12422,341,27,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12412,341,17,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12412,341,17,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12413,341,18,8])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12443,342,18,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12455,342,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12442,342,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12442,342,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12443,342,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12476,343,18,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12488,343,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12475,343,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12475,343,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12476,343,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12509,344,18,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12521,344,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12508,344,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12508,344,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12509,344,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",12222,335,2,304])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",12830,350,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",12830,350,9,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12836,350,15,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12842,350,21,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12876,351,22,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12896,352,22,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12907,352,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12928,353,22,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12939,353,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12960,354,22,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",12992,355,22,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13007,355,37,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13022,355,52,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13059,356,22,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13069,356,32,10])],"flags":[],"num-params":13,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13095,358,5,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13104,358,14,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13116,358,26,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13094,358,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13094,358,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13095,358,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13104,358,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13134,359,5,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13143,359,14,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13154,359,25,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13133,359,4,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13133,359,4,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13134,359,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13143,359,14,10])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13177,360,11,88]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13185,360,19,79]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13177,360,11,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13177,360,11,88])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13177,360,11,88]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13178,360,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13277,362,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13289,362,23,52]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13277,362,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13277,362,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13277,362,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13278,362,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13354,363,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13366,363,23,52]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13354,363,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13354,363,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13354,363,11,65]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13355,363,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13424,364,11,113]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13442,365,12,94]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13424,364,11,113])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13424,364,11,113])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13424,364,11,113]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13425,364,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13542,368,11,112]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13560,369,12,93]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13542,368,11,112])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13542,368,11,112])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13542,368,11,112]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13543,368,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13666,372,11,256]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13675,372,20,246]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13666,372,11,256])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13666,372,11,256])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13666,372,11,256]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13667,372,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13934,376,11,214]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13943,376,20,204]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13934,376,11,214])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13934,376,11,214])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13934,376,11,214]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13935,376,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14160,380,11,57]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14175,380,26,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14160,380,11,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14160,380,11,57])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14160,380,11,57]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14161,380,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14229,381,11,57]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14244,381,26,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14229,381,11,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14229,381,11,57])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14229,381,11,57]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14230,381,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14298,382,11,904]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14298,382,11,904])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14298,382,11,904])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14298,382,11,904]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14299,382,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15214,406,11,98]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15225,406,22,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15214,406,11,98])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15214,406,11,98])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15214,406,11,98]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15215,406,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15324,408,11,108]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15334,408,21,97]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15324,408,11,108])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15324,408,11,108])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15324,408,11,108]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15325,408,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15444,411,11,202]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15451,411,18,194]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15444,411,11,202])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15444,411,11,202])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15444,411,11,202]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15445,411,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15658,416,11,55]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15669,416,22,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15658,416,11,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15658,416,11,55])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15658,416,11,55]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15659,416,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15725,417,11,1664]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15739,417,25,1649]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15725,417,11,1664])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15725,417,11,1664])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15725,417,11,1664]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15726,417,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17398,451,7,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17410,451,19,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17432,452,16,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17474,453,16,22]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17513,454,16,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17397,451,6,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17397,451,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17398,451,7,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17433,452,17,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17441,452,25,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17454,452,38,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17432,452,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17432,452,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17433,452,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17475,453,17,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17485,453,27,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17474,453,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17474,453,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17475,453,17,9])},"rands":[{"$":"toplevel","depth":5,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17485,453,27,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17514,454,17,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17521,454,24,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17513,454,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17513,454,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17514,454,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15740,417,26,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15748,417,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15875,421,30,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15884,421,39,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15890,421,45,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15874,421,29,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15874,421,29,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15875,421,30,8])},"rands":[{"$":"toplevel","depth":2,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15884,421,39,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15891,421,46,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15903,421,58,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15890,421,45,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15890,421,45,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15891,421,46,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15944,423,36,96]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15962,424,37,77]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15944,423,36,96])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15944,423,36,96])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15944,423,36,96]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15945,423,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16077,426,36,97]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16095,427,37,78]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16077,426,36,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16077,426,36,97])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16077,426,36,97]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16078,426,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16211,429,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16218,429,43,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16211,429,36,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16211,429,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16211,429,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16212,429,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16271,430,36,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16279,430,44,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16271,430,36,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16271,430,36,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16271,430,36,25]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16272,430,37,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16333,431,36,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16337,431,40,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16333,431,36,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16333,431,36,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16333,431,36,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16334,431,37,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16387,432,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16394,432,43,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16387,432,36,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16387,432,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16387,432,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16388,432,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16447,433,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16454,433,43,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16447,433,36,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16447,433,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",16447,433,36,23]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16448,433,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16544,435,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16546,435,37,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16552,435,43,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16544,435,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16543,435,34,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16590,436,35,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16601,436,46,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16609,436,54,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16617,436,62,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16624,436,69,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16639,437,46,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16645,437,52,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16651,437,58,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16589,436,34,75])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16589,436,34,75])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16590,436,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16652,437,59,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16654,437,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16660,437,67,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16651,437,58,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16651,437,58,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16652,437,59,1])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16701,438,35,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16717,438,51,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16724,438,58,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16732,438,66,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16701,438,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16700,438,34,41])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16886,441,37,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16897,441,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16905,441,56,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16913,441,64,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16920,441,71,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16930,442,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16943,442,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16949,442,67,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16885,441,36,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16885,441,36,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16886,441,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16931,442,49,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16933,442,51,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16939,442,57,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16930,442,48,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16930,442,48,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16931,442,49,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":50}]}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16991,443,35,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17007,443,51,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17014,443,58,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17022,443,66,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16991,443,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16990,443,34,41])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17178,446,37,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17189,446,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17197,446,56,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17205,446,64,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17212,446,71,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17222,447,48,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17235,447,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17241,447,67,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17177,446,36,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17177,446,36,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17178,446,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17223,447,49,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17225,447,51,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17231,447,57,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17222,447,48,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17222,447,48,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17223,447,49,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":20}]}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},{"$":"toplevel","depth":4,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17282,448,34,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17288,448,40,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17299,448,51,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17307,448,59,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17315,448,67,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17322,448,74,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17335,449,51,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17341,449,57,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17347,449,63,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17287,448,39,66])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17287,448,39,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17288,448,40,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16503,434,31,852])}]}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16455,433,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16467,433,56,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16454,433,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16454,433,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16455,433,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16395,432,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16407,432,56,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16394,432,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16394,432,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16395,432,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16338,431,41,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16347,431,50,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16337,431,40,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16337,431,40,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16338,431,41,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16280,430,45,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16293,430,58,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16279,430,44,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16279,430,44,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16280,430,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16219,429,44,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16231,429,56,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16218,429,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16218,429,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16219,429,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16096,427,38,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16105,427,47,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16123,427,65,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16150,428,47,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16160,428,57,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16095,427,37,78])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16095,427,37,78])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16096,427,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",16106,427,48,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16120,427,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16105,427,47,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",16105,427,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",16106,427,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15963,424,38,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15972,424,47,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15990,424,65,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16016,425,47,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",16026,425,57,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15962,424,37,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15962,424,37,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15963,424,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15973,424,48,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15987,424,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15972,424,47,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15972,424,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15973,424,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15670,416,23,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15678,416,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15680,416,33,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15684,416,37,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15693,416,46,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15695,416,48,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15697,416,50,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15683,416,36,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15683,416,36,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15684,416,37,8])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15452,411,19,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15463,411,30,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15471,411,38,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15479,411,46,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15516,412,30,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15575,413,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15607,414,30,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15643,415,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15451,411,18,194])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15451,411,18,194])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15452,411,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15517,412,31,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15529,412,43,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15540,412,54,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15542,412,56,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15516,412,30,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15516,412,30,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15517,412,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15335,408,22,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15343,408,30,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15346,408,33,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15361,409,24,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15371,409,34,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15384,409,47,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15404,410,34,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15417,410,47,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15360,409,23,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15360,409,23,70])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15372,409,35,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15380,409,43,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15371,409,34,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15371,409,34,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15372,409,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15385,409,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15393,409,56,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15384,409,47,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15384,409,47,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15385,409,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15405,410,35,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15413,410,43,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15404,410,34,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15404,410,34,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15405,410,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15418,410,48,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15426,410,56,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15417,410,47,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15417,410,47,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15418,410,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15226,406,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15230,406,27,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15232,406,29,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15261,406,58,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15230,406,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15233,406,30,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15249,406,46,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15232,406,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15232,406,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15233,406,30,15])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15229,406,26,34])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15271,407,27,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15279,407,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15281,407,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[7],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15285,407,41,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15296,407,52,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15284,407,40,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15284,407,40,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"else":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14349,383,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14354,383,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14356,383,37,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14389,383,70,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14354,383,35,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14357,383,38,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14373,383,54,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14356,383,37,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14356,383,37,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14357,383,38,15])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14353,383,34,38])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14349,383,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14400,384,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14407,384,42,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14420,384,55,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14400,384,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14421,384,56,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14426,384,61,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14433,384,68,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14420,384,55,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14420,384,55,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14421,384,56,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14399,384,34,43])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14349,383,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14450,385,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14457,385,42,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14470,385,55,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14450,385,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14471,385,56,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14476,385,61,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14483,385,68,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14470,385,55,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14470,385,55,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14471,385,56,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14449,385,34,43])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14348,383,29,145])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14524,386,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14532,386,38,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14534,386,40,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14549,387,32,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14565,388,32,63]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14633,390,32,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14655,391,32,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14548,387,31,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14548,387,31,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14549,387,32,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14566,388,33,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14576,388,43,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14597,389,43,30]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14565,388,32,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14565,388,32,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14566,388,33,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14577,388,44,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14585,388,52,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14576,388,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14576,388,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14577,388,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14598,389,44,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14613,389,59,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14625,389,71,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14597,389,43,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14597,389,43,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14614,389,60,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14622,389,68,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14613,389,59,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14613,389,59,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14614,389,60,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14634,390,33,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14648,390,47,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14633,390,32,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14633,390,32,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14634,390,33,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14656,391,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14669,391,46,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14655,391,32,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14655,391,32,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14656,391,33,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14705,392,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14710,392,35,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14712,392,37,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14745,392,70,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14710,392,35,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14713,392,38,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14729,392,54,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14712,392,37,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14712,392,37,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14713,392,38,15])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14709,392,34,38])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14705,392,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14756,393,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14763,393,42,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14776,393,55,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14756,393,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14777,393,56,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14782,393,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14788,393,67,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14776,393,55,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14776,393,55,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14777,393,56,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14755,393,34,43])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14705,392,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14806,394,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14813,394,42,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14826,394,55,21]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14806,394,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14827,394,56,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14832,394,61,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14838,394,67,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14826,394,55,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14826,394,55,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14827,394,56,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14805,394,34,43])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14704,392,29,145])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14880,395,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14888,395,38,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14890,395,40,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14905,396,32,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14920,397,32,63]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14988,399,32,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15010,400,32,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14904,396,31,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14904,396,31,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14905,396,32,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14921,397,33,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14931,397,43,30]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14971,398,43,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14920,397,32,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14920,397,32,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14921,397,33,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14932,397,44,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14947,397,59,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14959,397,71,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14931,397,43,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14931,397,43,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14948,397,60,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14956,397,68,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14947,397,59,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14947,397,59,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14948,397,60,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14972,398,44,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14980,398,52,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14971,398,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14971,398,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14972,398,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14989,399,33,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15003,399,47,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14988,399,32,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14988,399,32,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14989,399,33,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15011,400,33,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15024,400,46,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15010,400,32,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15010,400,32,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15011,400,33,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},{"$":"toplevel","depth":5,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15059,401,29,4])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",15065,401,35,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15073,401,43,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15075,401,45,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15088,402,37,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15099,402,48,51]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15157,404,48,17]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15181,405,48,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15087,402,36,111])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15087,402,36,111])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15088,402,37,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15100,402,49,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15115,402,64,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15136,403,64,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15148,403,76,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15099,402,48,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15099,402,48,51])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15116,402,65,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15124,402,73,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15115,402,64,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15115,402,64,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15116,402,65,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15137,403,65,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15145,403,73,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15136,403,64,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15136,403,64,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15137,403,65,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15158,404,49,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15172,404,63,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15157,404,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15157,404,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15158,404,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",15182,405,49,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15195,405,62,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",15181,405,48,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",15181,405,48,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",15182,405,49,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14313,382,26,888])}]}}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14245,381,27,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14257,381,39,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14272,381,54,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14244,381,26,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14244,381,26,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14245,381,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14176,380,27,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14188,380,39,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14203,380,54,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14175,380,26,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14175,380,26,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14176,380,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13944,376,21,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13948,376,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13953,376,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13955,376,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13957,376,34,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13953,376,30,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13958,376,35,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13974,376,51,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13957,376,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13957,376,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13958,376,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13952,376,29,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13948,376,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14000,377,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14007,377,37,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14011,377,41,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14000,377,30,6])},"rands":[{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14012,377,42,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14027,377,57,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14011,377,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14011,377,41,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13999,377,29,33])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13947,376,24,86])}]}}},"then":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14094,379,25,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14098,379,29,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14134,379,65,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14093,379,24,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14093,379,24,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14094,379,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",14099,379,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14107,379,38,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",14111,379,42,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14117,379,48,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14119,379,50,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",14110,379,41,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",14110,379,41,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",14111,379,42,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13676,372,21,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13680,372,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13685,372,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13687,372,32,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13689,372,34,32]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13685,372,30,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13690,372,35,15]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13706,372,51,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13689,372,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13689,372,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13690,372,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13684,372,29,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13680,372,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13732,373,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13739,373,37,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13743,373,41,20]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13732,373,30,6])},"rands":[{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13744,373,42,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13759,373,57,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13743,373,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13743,373,41,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13731,373,29,33])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13679,372,24,86])}]}}},"then":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13868,375,25,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13872,375,29,35]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13908,375,65,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13867,375,24,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13867,375,24,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13868,375,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13873,375,30,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13881,375,38,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13885,375,42,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13891,375,48,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13893,375,50,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13884,375,41,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13884,375,41,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13885,375,42,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13561,369,13,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13565,369,17,73]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13642,371,17,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13560,369,12,93])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13560,369,12,93])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13561,369,13,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13566,369,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13574,369,26,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13583,370,20,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13594,370,31,27]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13622,370,59,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13624,370,61,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13582,370,19,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13582,370,19,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13583,370,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13595,370,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13607,370,44,13]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13594,370,31,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13594,370,31,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13595,370,32,11])},"rands":[{"$":"constant","value":"screen-left"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13443,365,13,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13447,365,17,74]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13525,367,17,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13442,365,12,94])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13442,365,12,94])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13443,365,13,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",13448,365,18,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13456,365,26,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13465,366,20,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13476,366,31,28]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13505,366,60,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13507,366,62,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13464,366,19,56])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13464,366,19,56])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13465,366,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13477,366,32,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13489,366,44,14]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13476,366,31,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13476,366,31,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13477,366,32,11])},"rands":[{"$":"constant","value":"screen-right"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13367,363,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13371,363,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13377,363,34,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13371,363,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13370,363,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13401,363,58,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13406,363,63,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13400,363,57,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13400,363,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13401,363,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13290,362,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13294,362,28,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13300,362,34,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13294,362,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13293,362,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13324,362,58,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13329,362,63,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13323,362,57,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13323,362,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13324,362,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13186,360,20,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13197,360,31,36]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13245,361,31,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13255,361,41,8]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13185,360,19,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13185,360,19,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13186,360,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13198,360,32,9]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13208,360,42,11]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13220,360,54,12]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13197,360,31,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13197,360,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13198,360,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13209,360,43,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13211,360,45,5]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13217,360,51,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13208,360,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13208,360,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13209,360,43,1])},"rands":[{"$":"toplevel","depth":8,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13211,360,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",13221,360,55,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13223,360,57,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13230,360,64,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",13220,360,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",13220,360,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13221,360,55,1])},"rands":[{"$":"toplevel","depth":8,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",13223,360,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"center"}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17571,458,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",17571,458,9,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17574,458,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17578,458,16,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17580,458,18,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17582,458,20,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17577,458,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17577,458,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17578,458,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17622,460,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",17622,460,9,4]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17627,460,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17631,460,18,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17635,460,22,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17630,460,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17630,460,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17631,460,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17636,460,23,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17638,460,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17640,460,27,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17635,460,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17635,460,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17636,460,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17641,460,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17643,460,30,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17646,460,33,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17640,460,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17640,460,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17641,460,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17643,460,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17692,462,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",17692,462,9,6]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17699,462,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17703,462,20,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17707,462,24,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17702,462,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17702,462,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17703,462,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17708,462,25,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17710,462,27,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17712,462,29,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17707,462,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17707,462,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17708,462,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17713,462,30,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17715,462,32,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17718,462,35,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17712,462,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17712,462,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17713,462,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17715,462,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17765,464,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap/bootstrap-gtp-teachpack",17765,464,9,7]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17773,464,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17777,464,21,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17781,464,25,16]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17776,464,20,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17776,464,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17777,464,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17782,464,26,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17784,464,28,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17786,464,30,10]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17781,464,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17781,464,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17782,464,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-gtp-teachpack",17787,464,31,1]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17789,464,33,2]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17792,464,36,3]),types.vector(["bootstrap/bootstrap-gtp-teachpack",17786,464,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-gtp-teachpack",17786,464,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17787,464,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-gtp-teachpack",17789,464,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}}]}}, 'provides': ["score","string->image","type","tangent","sq","start","sine","number->image","put-image","overlay-at","assert-equal","cosine"]}; diff --git a/servlet-htdocs/collects/bootstrap/bootstrap-teachpack.js b/servlet-htdocs/collects/bootstrap/bootstrap-teachpack.js index 3618adb..6ab4bba 100644 --- a/servlet-htdocs/collects/bootstrap/bootstrap-teachpack.js +++ b/servlet-htdocs/collects/bootstrap/bootstrap-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap/bootstrap-teachpack"] = { 'name': "bootstrap/bootstrap-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"playerImg"},{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"objectImgs"},{"$":"global-bucket","value":"update-object*"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"update-projectile*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"offscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"update-object"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"update-projectile"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"objects"},{"$":"global-bucket","value":"keypress*"},{"$":"global-bucket","value":"projectiles"},{"$":"global-bucket","value":"t"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"offscreen?"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-projectiles"},{"$":"global-bucket","value":"world-objects"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"score"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"test-frame"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"move-all"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"check-collision"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"any-collide?"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"PROJECTILE-IMG"},{"$":"global-bucket","value":"START"},{"$":"global-bucket","value":"DIRECTION"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rest"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("key=?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",893,25,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",912,26,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",932,27,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",964,28,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",977,28,21,3]),types.vector(["bootstrap/bootstrap-teachpack",981,28,25,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",976,28,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",977,28,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",999,29,8,14])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1015,29,24,3]),types.vector(["bootstrap/bootstrap-teachpack",1019,29,28,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1014,29,23,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1015,29,24,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1020,29,29,4]),types.vector(["bootstrap/bootstrap-teachpack",1025,29,34,1]),types.vector(["bootstrap/bootstrap-teachpack",1027,29,36,2]),types.vector(["bootstrap/bootstrap-teachpack",1030,29,39,2]),types.vector(["bootstrap/bootstrap-teachpack",1033,29,42,7]),types.vector(["bootstrap/bootstrap-teachpack",1041,29,50,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1019,29,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1020,29,29,4])},"rands":[{"$":"constant","value":5},{"$":"constant","value":20},{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"yellow"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1061,30,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1073,30,20,3]),types.vector(["bootstrap/bootstrap-teachpack",1077,30,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1072,30,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1073,30,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1078,30,25,9]),types.vector(["bootstrap/bootstrap-teachpack",1088,30,35,5]),types.vector(["bootstrap/bootstrap-teachpack",1094,30,41,6]),types.vector(["bootstrap/bootstrap-teachpack",1101,30,48,7]),types.vector(["bootstrap/bootstrap-teachpack",1109,30,56,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1077,30,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1078,30,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1088,30,35,5])},{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1094,30,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1128,31,8,9])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1139,31,19,3]),types.vector(["bootstrap/bootstrap-teachpack",1143,31,23,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1138,31,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1139,31,19,3])},"rands":[{"$":"constant","value":"left"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1160,32,8,5])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1167,32,15,3]),types.vector(["bootstrap/bootstrap-teachpack",1171,32,19,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1166,32,14,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1167,32,15,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1214,34,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",1214,34,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1224,34,19,6]),types.vector(["bootstrap/bootstrap-teachpack",1231,34,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1223,34,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1224,34,19,6])},"rands":[{"$":"constant","value":500}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1378,39,15,5])},{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1517,42,15,5])},{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"toplevel","depth":0,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":8},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("objects")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("projectiles")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":7},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1622,45,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1631,45,17,7]),types.vector(["bootstrap/bootstrap-teachpack",1639,45,25,6]),types.vector(["bootstrap/bootstrap-teachpack",1646,45,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1630,45,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1631,45,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1639,45,25,6])},{"$":"toplevel","depth":2,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1646,45,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1667,46,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1676,46,17,7]),types.vector(["bootstrap/bootstrap-teachpack",1684,46,25,6]),types.vector(["bootstrap/bootstrap-teachpack",1691,46,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1675,46,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1676,46,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1684,46,25,6])},{"$":"toplevel","depth":2,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1691,46,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1759,49,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",1759,49,9,11]),types.vector(["bootstrap/bootstrap-teachpack",1771,49,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1778,49,28,9]),types.vector(["bootstrap/bootstrap-teachpack",1788,49,38,13]),types.vector(["bootstrap/bootstrap-teachpack",1802,49,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1777,49,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1778,49,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1789,49,39,6]),types.vector(["bootstrap/bootstrap-teachpack",1796,49,46,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1788,49,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1789,49,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1803,49,53,1]),types.vector(["bootstrap/bootstrap-teachpack",1805,49,55,6]),types.vector(["bootstrap/bootstrap-teachpack",1812,49,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1802,49,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1803,49,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1805,49,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1813,49,63,1]),types.vector(["bootstrap/bootstrap-teachpack",1815,49,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1812,49,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1813,49,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1816,49,66,6]),types.vector(["bootstrap/bootstrap-teachpack",1823,49,73,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1815,49,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1816,49,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1949,53,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",1949,53,9,10]),types.vector(["bootstrap/bootstrap-teachpack",1960,53,20,5]),types.vector(["bootstrap/bootstrap-teachpack",1966,53,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1980,54,2,182]),types.vector(["bootstrap/bootstrap-teachpack",1999,54,21,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1980,54,2,182])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",1980,54,2,182]),types.vector(["bootstrap/bootstrap-teachpack",1987,54,9,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2039,55,5,11]),types.vector(["bootstrap/bootstrap-teachpack",2051,55,17,21]),types.vector(["bootstrap/bootstrap-teachpack",2091,56,17,20]),types.vector(["bootstrap/bootstrap-teachpack",2112,56,38,20]),types.vector(["bootstrap/bootstrap-teachpack",2150,57,17,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2038,55,4,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2039,55,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2052,55,18,13]),types.vector(["bootstrap/bootstrap-teachpack",2066,55,32,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2051,55,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2052,55,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2092,56,18,6]),types.vector(["bootstrap/bootstrap-teachpack",2099,56,25,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2091,56,17,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2092,56,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2113,56,39,6]),types.vector(["bootstrap/bootstrap-teachpack",2120,56,46,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2112,56,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2113,56,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2000,54,22,11]),types.vector(["bootstrap/bootstrap-teachpack",2012,54,34,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1999,54,21,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2000,54,22,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2013,54,35,10]),types.vector(["bootstrap/bootstrap-teachpack",2024,54,46,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2012,54,34,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2013,54,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2285,61,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",2285,61,9,10]),types.vector(["bootstrap/bootstrap-teachpack",2296,61,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2308,62,9,92]),types.vector(["bootstrap/bootstrap-teachpack",2322,62,23,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2308,62,9,92])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",2308,62,9,92]),types.vector(["bootstrap/bootstrap-teachpack",2309,62,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2410,63,9,251]),types.vector(["bootstrap/bootstrap-teachpack",2418,63,17,242])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2410,63,9,251])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",2410,63,9,251]),types.vector(["bootstrap/bootstrap-teachpack",2411,63,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2671,67,9,93]),types.vector(["bootstrap/bootstrap-teachpack",2683,67,21,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2671,67,9,93])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",2671,67,9,93]),types.vector(["bootstrap/bootstrap-teachpack",2672,67,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2771,68,5,11]),types.vector(["bootstrap/bootstrap-teachpack",2783,68,17,42]),types.vector(["bootstrap/bootstrap-teachpack",2826,68,60,2]),types.vector(["bootstrap/bootstrap-teachpack",2829,68,63,1]),types.vector(["bootstrap/bootstrap-teachpack",2849,69,17,66])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2770,68,4,146])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2771,68,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2784,68,18,4]),types.vector(["bootstrap/bootstrap-teachpack",2789,68,23,12]),types.vector(["bootstrap/bootstrap-teachpack",2802,68,36,2]),types.vector(["bootstrap/bootstrap-teachpack",2805,68,39,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2783,68,17,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2784,68,18,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2806,68,40,5]),types.vector(["bootstrap/bootstrap-teachpack",2812,68,46,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2805,68,39,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2806,68,40,5])},"rands":[{"$":"toplevel","depth":8,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2812,68,46,11])}]}}}]}}},{"$":"constant","value":10},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2850,69,18,5]),types.vector(["bootstrap/bootstrap-teachpack",2856,69,24,10]),types.vector(["bootstrap/bootstrap-teachpack",2867,69,35,36]),types.vector(["bootstrap/bootstrap-teachpack",2904,69,72,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2849,69,17,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2850,69,18,5])},"rands":[{"$":"toplevel","depth":7,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2856,69,24,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2868,69,36,11]),types.vector(["bootstrap/bootstrap-teachpack",2880,69,48,18]),types.vector(["bootstrap/bootstrap-teachpack",2899,69,67,1]),types.vector(["bootstrap/bootstrap-teachpack",2901,69,69,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2867,69,35,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2868,69,36,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2881,69,49,5]),types.vector(["bootstrap/bootstrap-teachpack",2887,69,55,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2880,69,48,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2881,69,49,5])},"rands":[{"$":"toplevel","depth":11,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2887,69,55,10])}]}}},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2684,67,22,6]),types.vector(["bootstrap/bootstrap-teachpack",2691,67,29,17]),types.vector(["bootstrap/bootstrap-teachpack",2709,67,47,17]),types.vector(["bootstrap/bootstrap-teachpack",2727,67,65,21]),types.vector(["bootstrap/bootstrap-teachpack",2749,67,87,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2683,67,21,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2684,67,22,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2692,67,30,13]),types.vector(["bootstrap/bootstrap-teachpack",2706,67,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2691,67,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2692,67,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2710,67,48,13]),types.vector(["bootstrap/bootstrap-teachpack",2724,67,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2709,67,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2710,67,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2728,67,66,17]),types.vector(["bootstrap/bootstrap-teachpack",2746,67,84,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2727,67,65,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2728,67,66,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2750,67,88,4]),types.vector(["bootstrap/bootstrap-teachpack",2755,67,93,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2749,67,87,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2750,67,88,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2419,63,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2423,63,22,1]),types.vector(["bootstrap/bootstrap-teachpack",2425,63,24,15]),types.vector(["bootstrap/bootstrap-teachpack",2441,63,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2423,63,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2426,63,25,11]),types.vector(["bootstrap/bootstrap-teachpack",2438,63,37,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2425,63,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2426,63,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2466,64,22,10]),types.vector(["bootstrap/bootstrap-teachpack",2477,64,33,29]),types.vector(["bootstrap/bootstrap-teachpack",2540,65,33,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2465,64,21,156])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2466,64,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2478,64,34,10]),types.vector(["bootstrap/bootstrap-teachpack",2489,64,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2477,64,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2478,64,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2490,64,46,12]),types.vector(["bootstrap/bootstrap-teachpack",2503,64,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2489,64,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2490,64,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2541,65,34,4]),types.vector(["bootstrap/bootstrap-teachpack",2546,65,39,1]),types.vector(["bootstrap/bootstrap-teachpack",2548,65,41,23]),types.vector(["bootstrap/bootstrap-teachpack",2572,65,65,23]),types.vector(["bootstrap/bootstrap-teachpack",2596,65,89,7]),types.vector(["bootstrap/bootstrap-teachpack",2604,65,97,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2540,65,33,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2541,65,34,4])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2549,65,42,1]),types.vector(["bootstrap/bootstrap-teachpack",2551,65,44,3]),types.vector(["bootstrap/bootstrap-teachpack",2555,65,48,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2548,65,41,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2549,65,42,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2556,65,49,11]),types.vector(["bootstrap/bootstrap-teachpack",2568,65,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2555,65,48,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2556,65,49,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2573,65,66,1]),types.vector(["bootstrap/bootstrap-teachpack",2575,65,68,3]),types.vector(["bootstrap/bootstrap-teachpack",2579,65,72,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2572,65,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2573,65,66,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2580,65,73,11]),types.vector(["bootstrap/bootstrap-teachpack",2592,65,85,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2579,65,72,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2580,65,73,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":8,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2604,65,97,15])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2644,66,22,12]),types.vector(["bootstrap/bootstrap-teachpack",2657,66,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2643,66,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2644,66,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2323,62,24,13]),types.vector(["bootstrap/bootstrap-teachpack",2337,62,38,15]),types.vector(["bootstrap/bootstrap-teachpack",2353,62,54,12]),types.vector(["bootstrap/bootstrap-teachpack",2366,62,67,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2322,62,23,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2323,62,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2338,62,39,11]),types.vector(["bootstrap/bootstrap-teachpack",2350,62,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2337,62,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2338,62,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2367,62,68,14]),types.vector(["bootstrap/bootstrap-teachpack",2382,62,83,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2366,62,67,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2367,62,68,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2383,62,84,11]),types.vector(["bootstrap/bootstrap-teachpack",2395,62,96,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2382,62,83,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2383,62,84,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3078,74,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",3078,74,9,11]),types.vector(["bootstrap/bootstrap-teachpack",3090,74,21,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3107,76,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3112,76,11,1]),types.vector(["bootstrap/bootstrap-teachpack",3114,76,13,19]),types.vector(["bootstrap/bootstrap-teachpack",3134,76,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3112,76,11,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3115,76,14,15]),types.vector(["bootstrap/bootstrap-teachpack",3131,76,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3114,76,13,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3115,76,14,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3107,76,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3138,76,37,6]),types.vector(["bootstrap/bootstrap-teachpack",3145,76,44,17]),types.vector(["bootstrap/bootstrap-teachpack",3163,76,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3138,76,37,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3146,76,45,5]),types.vector(["bootstrap/bootstrap-teachpack",3152,76,51,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3145,76,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3146,76,45,5])},"rands":[{"$":"toplevel","depth":11,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3152,76,51,9])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3164,76,63,4]),types.vector(["bootstrap/bootstrap-teachpack",3169,76,68,5]),types.vector(["bootstrap/bootstrap-teachpack",3175,76,74,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3163,76,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3164,76,63,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",3193,77,6,6]),types.vector(["bootstrap/bootstrap-teachpack",3201,77,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3205,77,18,10]),types.vector(["bootstrap/bootstrap-teachpack",3216,77,29,39]),types.vector(["bootstrap/bootstrap-teachpack",3256,77,69,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3204,77,17,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3205,77,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3217,77,30,9]),types.vector(["bootstrap/bootstrap-teachpack",3227,77,40,11]),types.vector(["bootstrap/bootstrap-teachpack",3239,77,52,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3216,77,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3217,77,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3228,77,41,7]),types.vector(["bootstrap/bootstrap-teachpack",3236,77,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3227,77,40,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3228,77,41,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3240,77,53,1]),types.vector(["bootstrap/bootstrap-teachpack",3242,77,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3239,77,52,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3243,77,56,7]),types.vector(["bootstrap/bootstrap-teachpack",3251,77,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3242,77,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3243,77,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3257,77,70,13]),types.vector(["bootstrap/bootstrap-teachpack",3271,77,84,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3256,77,69,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3257,77,70,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3283,78,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3288,78,11,1]),types.vector(["bootstrap/bootstrap-teachpack",3290,78,13,19]),types.vector(["bootstrap/bootstrap-teachpack",3310,78,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3288,78,11,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3291,78,14,15]),types.vector(["bootstrap/bootstrap-teachpack",3307,78,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3290,78,13,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3291,78,14,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3283,78,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3314,78,37,6]),types.vector(["bootstrap/bootstrap-teachpack",3321,78,44,17]),types.vector(["bootstrap/bootstrap-teachpack",3339,78,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3314,78,37,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3322,78,45,5]),types.vector(["bootstrap/bootstrap-teachpack",3328,78,51,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3321,78,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3322,78,45,5])},"rands":[{"$":"toplevel","depth":11,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3328,78,51,9])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3340,78,63,4]),types.vector(["bootstrap/bootstrap-teachpack",3345,78,68,6]),types.vector(["bootstrap/bootstrap-teachpack",3352,78,75,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3339,78,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3340,78,63,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",3369,79,6,6]),types.vector(["bootstrap/bootstrap-teachpack",3377,79,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3381,79,18,10]),types.vector(["bootstrap/bootstrap-teachpack",3392,79,29,39]),types.vector(["bootstrap/bootstrap-teachpack",3432,79,69,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3380,79,17,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3381,79,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3393,79,30,9]),types.vector(["bootstrap/bootstrap-teachpack",3403,79,40,15]),types.vector(["bootstrap/bootstrap-teachpack",3419,79,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3392,79,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3393,79,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3404,79,41,1]),types.vector(["bootstrap/bootstrap-teachpack",3406,79,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3403,79,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3407,79,44,7]),types.vector(["bootstrap/bootstrap-teachpack",3415,79,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3406,79,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3407,79,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3420,79,57,7]),types.vector(["bootstrap/bootstrap-teachpack",3428,79,65,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3419,79,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3420,79,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3433,79,70,13]),types.vector(["bootstrap/bootstrap-teachpack",3447,79,84,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3432,79,69,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3433,79,70,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},{"$":"toplevel","depth":4,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",3464,80,11,6]),types.vector(["bootstrap/bootstrap-teachpack",3472,80,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3476,80,23,10]),types.vector(["bootstrap/bootstrap-teachpack",3487,80,34,27]),types.vector(["bootstrap/bootstrap-teachpack",3515,80,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3475,80,22,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3476,80,23,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3488,80,35,1]),types.vector(["bootstrap/bootstrap-teachpack",3490,80,37,11]),types.vector(["bootstrap/bootstrap-teachpack",3502,80,49,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3487,80,34,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3491,80,38,7]),types.vector(["bootstrap/bootstrap-teachpack",3499,80,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3490,80,37,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3491,80,38,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3503,80,50,7]),types.vector(["bootstrap/bootstrap-teachpack",3511,80,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3502,80,49,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3503,80,50,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3516,80,63,13]),types.vector(["bootstrap/bootstrap-teachpack",3530,80,77,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3515,80,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3516,80,63,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441]),types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3655,84,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",3655,84,9,5]),types.vector(["bootstrap/bootstrap-teachpack",3661,84,15,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3671,85,3,10]),types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366]),types.vector(["bootstrap/bootstrap-teachpack",4055,91,3,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3670,85,2,407])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3671,85,3,10])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3699,87,7,8]),types.vector(["bootstrap/bootstrap-teachpack",3708,87,16,17]),types.vector(["bootstrap/bootstrap-teachpack",3726,87,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3699,87,7,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3709,87,17,5]),types.vector(["bootstrap/bootstrap-teachpack",3715,87,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3708,87,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3709,87,17,5])},"rands":[{"$":"toplevel","depth":9,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3715,87,23,9])}]}}},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3735,87,43,9]),types.vector(["bootstrap/bootstrap-teachpack",3745,87,53,16]),types.vector(["bootstrap/bootstrap-teachpack",3762,87,70,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3734,87,42,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3735,87,43,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3746,87,54,1]),types.vector(["bootstrap/bootstrap-teachpack",3748,87,56,9]),types.vector(["bootstrap/bootstrap-teachpack",3758,87,66,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3745,87,53,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3746,87,54,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3749,87,57,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3748,87,56,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3749,87,57,7])},"rands":[]}}},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3763,87,71,6]),types.vector(["bootstrap/bootstrap-teachpack",3770,87,78,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3762,87,70,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3763,87,71,6])},"rands":[{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3770,87,78,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3787,88,7,8]),types.vector(["bootstrap/bootstrap-teachpack",3796,88,16,17]),types.vector(["bootstrap/bootstrap-teachpack",3814,88,34,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3787,88,7,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3797,88,17,5]),types.vector(["bootstrap/bootstrap-teachpack",3803,88,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3796,88,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3797,88,17,5])},"rands":[{"$":"toplevel","depth":9,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3803,88,23,9])}]}}},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3824,88,44,9]),types.vector(["bootstrap/bootstrap-teachpack",3834,88,54,19]),types.vector(["bootstrap/bootstrap-teachpack",3854,88,74,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3823,88,43,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3824,88,44,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3835,88,55,1]),types.vector(["bootstrap/bootstrap-teachpack",3837,88,57,9]),types.vector(["bootstrap/bootstrap-teachpack",3847,88,67,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3834,88,54,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3835,88,55,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3838,88,58,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3837,88,57,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3838,88,58,7])},"rands":[]}}},{"$":"toplevel","depth":6,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3847,88,67,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3855,88,75,6]),types.vector(["bootstrap/bootstrap-teachpack",3862,88,82,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3854,88,74,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3855,88,75,6])},"rands":[{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3862,88,82,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3879,89,7,8]),types.vector(["bootstrap/bootstrap-teachpack",3888,89,16,17]),types.vector(["bootstrap/bootstrap-teachpack",3906,89,34,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3879,89,7,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3889,89,17,5]),types.vector(["bootstrap/bootstrap-teachpack",3895,89,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3888,89,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3889,89,17,5])},"rands":[{"$":"toplevel","depth":9,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3895,89,23,9])}]}}},{"$":"constant","value":"top"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3914,89,42,9]),types.vector(["bootstrap/bootstrap-teachpack",3924,89,52,14]),types.vector(["bootstrap/bootstrap-teachpack",3939,89,67,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3913,89,41,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3914,89,42,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3925,89,53,6]),types.vector(["bootstrap/bootstrap-teachpack",3932,89,60,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3924,89,52,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3925,89,53,6])},"rands":[{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3932,89,60,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3940,89,68,1]),types.vector(["bootstrap/bootstrap-teachpack",3942,89,70,9]),types.vector(["bootstrap/bootstrap-teachpack",3952,89,80,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3939,89,67,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3940,89,68,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3943,89,71,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3942,89,70,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3943,89,71,7])},"rands":[]}}},{"$":"toplevel","depth":6,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3952,89,80,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3969,90,7,8]),types.vector(["bootstrap/bootstrap-teachpack",3978,90,16,17]),types.vector(["bootstrap/bootstrap-teachpack",3996,90,34,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3969,90,7,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3979,90,17,5]),types.vector(["bootstrap/bootstrap-teachpack",3985,90,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3978,90,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3979,90,17,5])},"rands":[{"$":"toplevel","depth":9,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3985,90,23,9])}]}}},{"$":"constant","value":"bottom"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4007,90,45,9]),types.vector(["bootstrap/bootstrap-teachpack",4017,90,55,14]),types.vector(["bootstrap/bootstrap-teachpack",4032,90,70,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4006,90,44,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4007,90,45,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4018,90,56,6]),types.vector(["bootstrap/bootstrap-teachpack",4025,90,63,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4017,90,55,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4018,90,56,6])},"rands":[{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4025,90,63,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4033,90,71,1]),types.vector(["bootstrap/bootstrap-teachpack",4035,90,73,9]),types.vector(["bootstrap/bootstrap-teachpack",4045,90,83,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4032,90,70,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4033,90,71,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4036,90,74,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4035,90,73,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4036,90,74,7])},"rands":[]}}},{"$":"constant","value":-1}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366]),types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])}]}}}}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4056,91,4,13]),types.vector(["bootstrap/bootstrap-teachpack",4070,91,18,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4055,91,3,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4056,91,4,13])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4242,95,9,8])}],"body":{"$":"lam","name":types.symbol("move-all"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",4242,95,9,8]),types.vector(["bootstrap/bootstrap-teachpack",4251,95,18,6]),types.vector(["bootstrap/bootstrap-teachpack",4258,95,25,4]),types.vector(["bootstrap/bootstrap-teachpack",4263,95,30,10])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4278,96,3,3]),types.vector(["bootstrap/bootstrap-teachpack",4282,96,7,51]),types.vector(["bootstrap/bootstrap-teachpack",4334,96,59,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4277,96,2,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4278,96,3,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",4283,96,8,6]),types.vector(["bootstrap/bootstrap-teachpack",4291,96,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4295,96,20,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4299,96,24,10]),types.vector(["bootstrap/bootstrap-teachpack",4310,96,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4314,96,39,5]),types.vector(["bootstrap/bootstrap-teachpack",4320,96,45,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4313,96,38,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4314,96,39,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4324,96,49,4]),types.vector(["bootstrap/bootstrap-teachpack",4329,96,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4323,96,48,8])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4574,101,9,8])}],"body":{"$":"lam","name":types.symbol("keypress"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",4574,101,9,8]),types.vector(["bootstrap/bootstrap-teachpack",4583,101,18,1]),types.vector(["bootstrap/bootstrap-teachpack",4585,101,20,3]),types.vector(["bootstrap/bootstrap-teachpack",4589,101,24,13])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4618,103,6,5]),types.vector(["bootstrap/bootstrap-teachpack",4624,103,12,3]),types.vector(["bootstrap/bootstrap-teachpack",4628,103,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4618,103,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4640,104,6,10]),types.vector(["bootstrap/bootstrap-teachpack",4651,104,17,17]),types.vector(["bootstrap/bootstrap-teachpack",4686,105,17,17]),types.vector(["bootstrap/bootstrap-teachpack",4721,106,17,16]),types.vector(["bootstrap/bootstrap-teachpack",4755,107,17,243]),types.vector(["bootstrap/bootstrap-teachpack",5016,111,17,12]),types.vector(["bootstrap/bootstrap-teachpack",5046,112,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5079,113,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5112,114,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4639,104,5,489])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4640,104,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4652,104,18,13]),types.vector(["bootstrap/bootstrap-teachpack",4666,104,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4651,104,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4652,104,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4687,105,18,13]),types.vector(["bootstrap/bootstrap-teachpack",4701,105,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4686,105,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4687,105,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4722,106,18,12]),types.vector(["bootstrap/bootstrap-teachpack",4735,106,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4721,106,17,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4722,106,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4756,107,18,4]),types.vector(["bootstrap/bootstrap-teachpack",4761,107,23,65]),types.vector(["bootstrap/bootstrap-teachpack",4850,108,23,147])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4755,107,17,243])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4756,107,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4762,107,24,10]),types.vector(["bootstrap/bootstrap-teachpack",4773,107,35,29]),types.vector(["bootstrap/bootstrap-teachpack",4803,107,65,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4761,107,23,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4762,107,24,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4774,107,36,10]),types.vector(["bootstrap/bootstrap-teachpack",4785,107,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4773,107,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4774,107,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4786,107,48,12]),types.vector(["bootstrap/bootstrap-teachpack",4799,107,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4785,107,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4786,107,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4804,107,66,5]),types.vector(["bootstrap/bootstrap-teachpack",4810,107,72,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4803,107,65,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4804,107,66,5])},"rands":[{"$":"toplevel","depth":13,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4810,107,72,14])}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4851,108,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4855,108,28,1]),types.vector(["bootstrap/bootstrap-teachpack",4857,108,30,2]),types.vector(["bootstrap/bootstrap-teachpack",4860,108,33,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4855,108,28,1])},"rands":[{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4861,108,34,6]),types.vector(["bootstrap/bootstrap-teachpack",4868,108,41,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4860,108,33,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":17,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4861,108,34,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4869,108,42,17]),types.vector(["bootstrap/bootstrap-teachpack",4887,108,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4868,108,41,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":18,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4869,108,42,17])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4920,109,28,4]),types.vector(["bootstrap/bootstrap-teachpack",4925,109,33,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4919,109,27,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4920,109,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4926,109,34,17]),types.vector(["bootstrap/bootstrap-teachpack",4944,109,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4925,109,33,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4926,109,34,17])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4976,110,28,17]),types.vector(["bootstrap/bootstrap-teachpack",4994,110,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4975,110,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4976,110,28,17])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5017,111,18,8]),types.vector(["bootstrap/bootstrap-teachpack",5026,111,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5016,111,17,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5017,111,18,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5047,112,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5059,112,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5046,112,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5047,112,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5080,113,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5092,113,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5079,113,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5080,113,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5113,114,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5125,114,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5112,114,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5113,114,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])},{"$":"toplevel","depth":4,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5146,116,6,10]),types.vector(["bootstrap/bootstrap-teachpack",5157,116,17,17]),types.vector(["bootstrap/bootstrap-teachpack",5192,117,17,17]),types.vector(["bootstrap/bootstrap-teachpack",5227,118,17,36]),types.vector(["bootstrap/bootstrap-teachpack",5281,119,17,21]),types.vector(["bootstrap/bootstrap-teachpack",5320,120,17,12]),types.vector(["bootstrap/bootstrap-teachpack",5350,121,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5383,122,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5416,123,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5145,116,5,287])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5146,116,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5158,116,18,13]),types.vector(["bootstrap/bootstrap-teachpack",5172,116,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5157,116,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5158,116,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5193,117,18,13]),types.vector(["bootstrap/bootstrap-teachpack",5207,117,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5192,117,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5193,117,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5228,118,18,13]),types.vector(["bootstrap/bootstrap-teachpack",5242,118,32,16]),types.vector(["bootstrap/bootstrap-teachpack",5259,118,49,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5227,118,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5243,118,33,12]),types.vector(["bootstrap/bootstrap-teachpack",5256,118,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5242,118,32,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5243,118,33,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5282,119,18,17]),types.vector(["bootstrap/bootstrap-teachpack",5300,119,36,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5281,119,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5282,119,18,17])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5321,120,18,8]),types.vector(["bootstrap/bootstrap-teachpack",5330,120,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5320,120,17,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5321,120,18,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5351,121,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5363,121,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5350,121,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5351,121,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5384,122,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5396,122,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5383,122,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5384,122,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5417,123,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5429,123,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5416,123,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5417,123,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828]),types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5558,127,9,12])}],"body":{"$":"lam","name":types.symbol("any-collide?"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",5558,127,9,12]),types.vector(["bootstrap/bootstrap-teachpack",5571,127,22,8]),types.vector(["bootstrap/bootstrap-teachpack",5580,127,31,1]),types.vector(["bootstrap/bootstrap-teachpack",5582,127,33,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5593,128,3,3]),types.vector(["bootstrap/bootstrap-teachpack",5597,128,7,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5592,128,2,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5593,128,3,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5598,128,8,6]),types.vector(["bootstrap/bootstrap-teachpack",5605,128,15,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5597,128,7,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5598,128,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5606,128,16,6]),types.vector(["bootstrap/bootstrap-teachpack",5613,128,23,27]),types.vector(["bootstrap/bootstrap-teachpack",5641,128,51,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5605,128,15,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5606,128,16,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",5614,128,24,6]),types.vector(["bootstrap/bootstrap-teachpack",5622,128,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5626,128,36,8]),types.vector(["bootstrap/bootstrap-teachpack",5635,128,45,1]),types.vector(["bootstrap/bootstrap-teachpack",5637,128,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5625,128,35,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5824,132,9,15])}],"body":{"$":"lam","name":types.symbol("check-collision"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",5824,132,9,15]),types.vector(["bootstrap/bootstrap-teachpack",5840,132,25,6]),types.vector(["bootstrap/bootstrap-teachpack",5847,132,32,11]),types.vector(["bootstrap/bootstrap-teachpack",5859,132,44,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5873,133,3,3]),types.vector(["bootstrap/bootstrap-teachpack",5877,133,7,138]),types.vector(["bootstrap/bootstrap-teachpack",6023,136,7,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5872,133,2,158])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5873,133,3,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",5878,133,8,6]),types.vector(["bootstrap/bootstrap-teachpack",5886,133,16,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5894,133,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5898,133,28,12]),types.vector(["bootstrap/bootstrap-teachpack",5911,133,41,8]),types.vector(["bootstrap/bootstrap-teachpack",5920,133,50,5]),types.vector(["bootstrap/bootstrap-teachpack",5926,133,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5898,133,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5968,134,28,5]),types.vector(["bootstrap/bootstrap-teachpack",5974,134,34,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5967,134,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5968,134,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6334,142,9,5])}],"body":{"$":"lam","name":types.symbol("START"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",6334,142,9,5]),types.vector(["bootstrap/bootstrap-teachpack",6340,142,15,5]),types.vector(["bootstrap/bootstrap-teachpack",6346,142,21,11]),types.vector(["bootstrap/bootstrap-teachpack",6373,143,15,10]),types.vector(["bootstrap/bootstrap-teachpack",6384,143,26,10]),types.vector(["bootstrap/bootstrap-teachpack",6395,143,37,10]),types.vector(["bootstrap/bootstrap-teachpack",6406,143,48,9]),types.vector(["bootstrap/bootstrap-teachpack",6416,143,58,13]),types.vector(["bootstrap/bootstrap-teachpack",6445,144,15,9]),types.vector(["bootstrap/bootstrap-teachpack",6470,145,15,14]),types.vector(["bootstrap/bootstrap-teachpack",6485,145,30,14]),types.vector(["bootstrap/bootstrap-teachpack",6500,145,45,14]),types.vector(["bootstrap/bootstrap-teachpack",6515,145,60,18]),types.vector(["bootstrap/bootstrap-teachpack",6549,146,15,9]),types.vector(["bootstrap/bootstrap-teachpack",6559,146,25,11])],"flags":[],"num-params":14,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6586,148,5,8]),types.vector(["bootstrap/bootstrap-teachpack",6595,148,14,14]),types.vector(["bootstrap/bootstrap-teachpack",6610,148,29,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6585,148,4,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6586,148,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6595,148,14,14])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6630,149,5,8]),types.vector(["bootstrap/bootstrap-teachpack",6639,149,14,11]),types.vector(["bootstrap/bootstrap-teachpack",6651,149,26,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6629,149,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6630,149,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6639,149,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6669,150,5,8]),types.vector(["bootstrap/bootstrap-teachpack",6678,150,14,10]),types.vector(["bootstrap/bootstrap-teachpack",6689,150,25,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6668,150,4,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6669,150,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6678,150,14,10])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6706,151,5,8]),types.vector(["bootstrap/bootstrap-teachpack",6715,151,14,9]),types.vector(["bootstrap/bootstrap-teachpack",6725,151,24,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6705,151,4,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6706,151,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6715,151,14,9])},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6747,152,11,68]),types.vector(["bootstrap/bootstrap-teachpack",6755,152,19,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6747,152,11,68])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6747,152,11,68]),types.vector(["bootstrap/bootstrap-teachpack",6748,152,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6827,153,11,65]),types.vector(["bootstrap/bootstrap-teachpack",6839,153,23,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6827,153,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6827,153,11,65]),types.vector(["bootstrap/bootstrap-teachpack",6828,153,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6904,154,11,65]),types.vector(["bootstrap/bootstrap-teachpack",6916,154,23,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6904,154,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6904,154,11,65]),types.vector(["bootstrap/bootstrap-teachpack",6905,154,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6981,155,11,98]),types.vector(["bootstrap/bootstrap-teachpack",6990,155,20,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6981,155,11,98])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6981,155,11,98]),types.vector(["bootstrap/bootstrap-teachpack",6982,155,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7091,156,11,98]),types.vector(["bootstrap/bootstrap-teachpack",7100,156,20,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7091,156,11,98])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7091,156,11,98]),types.vector(["bootstrap/bootstrap-teachpack",7092,156,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7201,157,11,19]),types.vector(["bootstrap/bootstrap-teachpack",7214,157,24,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7201,157,11,19])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7201,157,11,19]),types.vector(["bootstrap/bootstrap-teachpack",7202,157,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7232,158,11,44]),types.vector(["bootstrap/bootstrap-teachpack",7247,158,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7232,158,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7232,158,11,44]),types.vector(["bootstrap/bootstrap-teachpack",7233,158,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7288,159,11,44]),types.vector(["bootstrap/bootstrap-teachpack",7303,159,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7288,159,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7288,159,11,44]),types.vector(["bootstrap/bootstrap-teachpack",7289,159,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7344,160,11,52]),types.vector(["bootstrap/bootstrap-teachpack",7363,160,30,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7344,160,11,52])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7344,160,11,52]),types.vector(["bootstrap/bootstrap-teachpack",7345,160,12,17])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7408,161,11,824]),types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7408,161,11,824])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7408,161,11,824]),types.vector(["bootstrap/bootstrap-teachpack",7409,161,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8244,170,11,208]),types.vector(["bootstrap/bootstrap-teachpack",8256,170,23,195])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8244,170,11,208])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8244,170,11,208]),types.vector(["bootstrap/bootstrap-teachpack",8245,170,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8464,173,11,91]),types.vector(["bootstrap/bootstrap-teachpack",8474,173,21,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8464,173,11,91])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8464,173,11,91]),types.vector(["bootstrap/bootstrap-teachpack",8465,173,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8567,174,11,214]),types.vector(["bootstrap/bootstrap-teachpack",8574,174,18,206])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8567,174,11,214])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8567,174,11,214]),types.vector(["bootstrap/bootstrap-teachpack",8568,174,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8793,179,11,55]),types.vector(["bootstrap/bootstrap-teachpack",8804,179,22,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8793,179,11,55])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8793,179,11,55]),types.vector(["bootstrap/bootstrap-teachpack",8794,179,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8860,180,11,1860]),types.vector(["bootstrap/bootstrap-teachpack",8874,180,25,1845])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8860,180,11,1860])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8860,180,11,1860]),types.vector(["bootstrap/bootstrap-teachpack",8861,180,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10729,206,7,11]),types.vector(["bootstrap/bootstrap-teachpack",10741,206,19,5]),types.vector(["bootstrap/bootstrap-teachpack",10766,207,19,25]),types.vector(["bootstrap/bootstrap-teachpack",10811,208,19,22]),types.vector(["bootstrap/bootstrap-teachpack",10853,209,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10728,206,6,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10729,206,7,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10767,207,20,7]),types.vector(["bootstrap/bootstrap-teachpack",10775,207,28,12]),types.vector(["bootstrap/bootstrap-teachpack",10788,207,41,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10766,207,19,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10767,207,20,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10812,208,20,9]),types.vector(["bootstrap/bootstrap-teachpack",10822,208,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10811,208,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10812,208,20,9])},"rands":[{"$":"toplevel","depth":5,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10822,208,30,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10854,209,20,6]),types.vector(["bootstrap/bootstrap-teachpack",10861,209,27,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10853,209,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10854,209,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8875,180,26,6]),types.vector(["bootstrap/bootstrap-teachpack",8883,180,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8952,182,30,8]),types.vector(["bootstrap/bootstrap-teachpack",8961,182,39,5]),types.vector(["bootstrap/bootstrap-teachpack",8967,182,45,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8951,182,29,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8952,182,30,8])},"rands":[{"$":"toplevel","depth":2,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8961,182,39,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8968,182,46,11]),types.vector(["bootstrap/bootstrap-teachpack",8980,182,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8967,182,45,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8968,182,46,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9020,183,36,167]),types.vector(["bootstrap/bootstrap-teachpack",9029,183,45,157])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9020,183,36,167])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9020,183,36,167]),types.vector(["bootstrap/bootstrap-teachpack",9021,183,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9224,185,36,63]),types.vector(["bootstrap/bootstrap-teachpack",9233,185,45,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9224,185,36,63])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9224,185,36,63]),types.vector(["bootstrap/bootstrap-teachpack",9225,185,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9324,186,36,175]),types.vector(["bootstrap/bootstrap-teachpack",9337,186,49,161])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9324,186,36,175])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9324,186,36,175]),types.vector(["bootstrap/bootstrap-teachpack",9325,186,37,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9536,188,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9543,188,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9536,188,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9536,188,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9537,188,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9596,189,36,25]),types.vector(["bootstrap/bootstrap-teachpack",9604,189,44,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9596,189,36,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9596,189,36,25]),types.vector(["bootstrap/bootstrap-teachpack",9597,189,37,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9658,190,36,17]),types.vector(["bootstrap/bootstrap-teachpack",9662,190,40,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9658,190,36,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9658,190,36,17]),types.vector(["bootstrap/bootstrap-teachpack",9659,190,37,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9712,191,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9719,191,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9712,191,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9712,191,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9713,191,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9772,192,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9779,192,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9772,192,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9772,192,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9773,192,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9869,194,35,1]),types.vector(["bootstrap/bootstrap-teachpack",9871,194,37,5]),types.vector(["bootstrap/bootstrap-teachpack",9877,194,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9869,194,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9915,195,35,10]),types.vector(["bootstrap/bootstrap-teachpack",9926,195,46,7]),types.vector(["bootstrap/bootstrap-teachpack",9934,195,54,7]),types.vector(["bootstrap/bootstrap-teachpack",9942,195,62,6]),types.vector(["bootstrap/bootstrap-teachpack",9949,195,69,11]),types.vector(["bootstrap/bootstrap-teachpack",9961,195,81,2]),types.vector(["bootstrap/bootstrap-teachpack",9964,195,84,5]),types.vector(["bootstrap/bootstrap-teachpack",9970,195,90,5]),types.vector(["bootstrap/bootstrap-teachpack",9976,195,96,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9914,195,34,75])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9915,195,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9977,195,97,1]),types.vector(["bootstrap/bootstrap-teachpack",9979,195,99,5]),types.vector(["bootstrap/bootstrap-teachpack",9985,195,105,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9976,195,96,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9977,195,97,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10026,196,35,12]),types.vector(["bootstrap/bootstrap-teachpack",10039,196,48,8]),types.vector(["bootstrap/bootstrap-teachpack",10048,196,57,6]),types.vector(["bootstrap/bootstrap-teachpack",10055,196,64,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10026,196,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10208,199,37,10]),types.vector(["bootstrap/bootstrap-teachpack",10219,199,48,7]),types.vector(["bootstrap/bootstrap-teachpack",10227,199,56,7]),types.vector(["bootstrap/bootstrap-teachpack",10235,199,64,6]),types.vector(["bootstrap/bootstrap-teachpack",10242,199,71,11]),types.vector(["bootstrap/bootstrap-teachpack",10254,199,83,2]),types.vector(["bootstrap/bootstrap-teachpack",10257,199,86,12]),types.vector(["bootstrap/bootstrap-teachpack",10270,199,99,5]),types.vector(["bootstrap/bootstrap-teachpack",10276,199,105,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10207,199,36,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10208,199,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10258,199,87,1]),types.vector(["bootstrap/bootstrap-teachpack",10260,199,89,5]),types.vector(["bootstrap/bootstrap-teachpack",10266,199,95,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10257,199,86,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10258,199,87,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":50}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10318,200,35,12]),types.vector(["bootstrap/bootstrap-teachpack",10331,200,48,8]),types.vector(["bootstrap/bootstrap-teachpack",10340,200,57,6]),types.vector(["bootstrap/bootstrap-teachpack",10347,200,64,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10318,200,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10502,203,37,10]),types.vector(["bootstrap/bootstrap-teachpack",10513,203,48,7]),types.vector(["bootstrap/bootstrap-teachpack",10521,203,56,7]),types.vector(["bootstrap/bootstrap-teachpack",10529,203,64,6]),types.vector(["bootstrap/bootstrap-teachpack",10536,203,71,11]),types.vector(["bootstrap/bootstrap-teachpack",10548,203,83,2]),types.vector(["bootstrap/bootstrap-teachpack",10551,203,86,12]),types.vector(["bootstrap/bootstrap-teachpack",10564,203,99,5]),types.vector(["bootstrap/bootstrap-teachpack",10570,203,105,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10501,203,36,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10502,203,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10552,203,87,1]),types.vector(["bootstrap/bootstrap-teachpack",10554,203,89,5]),types.vector(["bootstrap/bootstrap-teachpack",10560,203,95,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10551,203,86,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10552,203,87,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":20}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},{"$":"toplevel","depth":4,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10617,204,40,10]),types.vector(["bootstrap/bootstrap-teachpack",10628,204,51,7]),types.vector(["bootstrap/bootstrap-teachpack",10636,204,59,7]),types.vector(["bootstrap/bootstrap-teachpack",10644,204,67,6]),types.vector(["bootstrap/bootstrap-teachpack",10651,204,74,11]),types.vector(["bootstrap/bootstrap-teachpack",10663,204,86,2]),types.vector(["bootstrap/bootstrap-teachpack",10666,204,89,5]),types.vector(["bootstrap/bootstrap-teachpack",10672,204,95,5]),types.vector(["bootstrap/bootstrap-teachpack",10678,204,101,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10616,204,39,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10617,204,40,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858]),types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])}]}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9780,192,44,11]),types.vector(["bootstrap/bootstrap-teachpack",9792,192,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9779,192,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9780,192,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9720,191,44,11]),types.vector(["bootstrap/bootstrap-teachpack",9732,191,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9719,191,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9720,191,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9663,190,41,8]),types.vector(["bootstrap/bootstrap-teachpack",9672,190,50,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9662,190,40,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9663,190,41,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9605,189,45,12]),types.vector(["bootstrap/bootstrap-teachpack",9618,189,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9604,189,44,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9605,189,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9544,188,44,11]),types.vector(["bootstrap/bootstrap-teachpack",9556,188,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9543,188,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9544,188,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9338,186,50,6]),types.vector(["bootstrap/bootstrap-teachpack",9345,186,57,33]),types.vector(["bootstrap/bootstrap-teachpack",9436,187,57,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9337,186,49,161])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9338,186,50,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9346,186,58,6]),types.vector(["bootstrap/bootstrap-teachpack",9354,186,66,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9358,186,70,3]),types.vector(["bootstrap/bootstrap-teachpack",9362,186,74,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9357,186,69,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9358,186,70,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9363,186,75,10]),types.vector(["bootstrap/bootstrap-teachpack",9374,186,86,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9362,186,74,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9437,187,58,8]),types.vector(["bootstrap/bootstrap-teachpack",9446,187,67,21]),types.vector(["bootstrap/bootstrap-teachpack",9468,187,89,17]),types.vector(["bootstrap/bootstrap-teachpack",9486,187,107,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9436,187,57,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9437,187,58,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9447,187,68,17]),types.vector(["bootstrap/bootstrap-teachpack",9465,187,86,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9446,187,67,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9447,187,68,17])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9234,185,46,8]),types.vector(["bootstrap/bootstrap-teachpack",9243,185,55,17]),types.vector(["bootstrap/bootstrap-teachpack",9261,185,73,13]),types.vector(["bootstrap/bootstrap-teachpack",9275,185,87,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9233,185,45,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9234,185,46,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9244,185,56,13]),types.vector(["bootstrap/bootstrap-teachpack",9258,185,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9243,185,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9244,185,56,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9030,183,46,8]),types.vector(["bootstrap/bootstrap-teachpack",9039,183,55,66]),types.vector(["bootstrap/bootstrap-teachpack",9161,184,55,13]),types.vector(["bootstrap/bootstrap-teachpack",9175,184,69,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9029,183,45,157])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9030,183,46,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9040,183,56,15]),types.vector(["bootstrap/bootstrap-teachpack",9056,183,72,17]),types.vector(["bootstrap/bootstrap-teachpack",9074,183,90,21]),types.vector(["bootstrap/bootstrap-teachpack",9096,183,112,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9039,183,55,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9040,183,56,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9057,183,73,13]),types.vector(["bootstrap/bootstrap-teachpack",9071,183,87,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9056,183,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9057,183,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9075,183,91,17]),types.vector(["bootstrap/bootstrap-teachpack",9093,183,109,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9074,183,90,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9075,183,91,17])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8805,179,23,6]),types.vector(["bootstrap/bootstrap-teachpack",8813,179,31,1]),types.vector(["bootstrap/bootstrap-teachpack",8815,179,33,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8819,179,37,8]),types.vector(["bootstrap/bootstrap-teachpack",8828,179,46,1]),types.vector(["bootstrap/bootstrap-teachpack",8830,179,48,1]),types.vector(["bootstrap/bootstrap-teachpack",8832,179,50,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8818,179,36,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8819,179,37,8])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8575,174,19,10]),types.vector(["bootstrap/bootstrap-teachpack",8586,174,30,7]),types.vector(["bootstrap/bootstrap-teachpack",8594,174,38,7]),types.vector(["bootstrap/bootstrap-teachpack",8602,174,46,6]),types.vector(["bootstrap/bootstrap-teachpack",8609,174,53,11]),types.vector(["bootstrap/bootstrap-teachpack",8651,175,30,28]),types.vector(["bootstrap/bootstrap-teachpack",8710,176,30,1]),types.vector(["bootstrap/bootstrap-teachpack",8742,177,30,5]),types.vector(["bootstrap/bootstrap-teachpack",8778,178,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8574,174,18,206])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8575,174,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8652,175,31,11]),types.vector(["bootstrap/bootstrap-teachpack",8664,175,43,10]),types.vector(["bootstrap/bootstrap-teachpack",8675,175,54,1]),types.vector(["bootstrap/bootstrap-teachpack",8677,175,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8651,175,30,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8652,175,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8475,173,22,6]),types.vector(["bootstrap/bootstrap-teachpack",8483,173,30,2]),types.vector(["bootstrap/bootstrap-teachpack",8486,173,33,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8491,173,38,9]),types.vector(["bootstrap/bootstrap-teachpack",8501,173,48,12]),types.vector(["bootstrap/bootstrap-teachpack",8514,173,61,12]),types.vector(["bootstrap/bootstrap-teachpack",8527,173,74,12]),types.vector(["bootstrap/bootstrap-teachpack",8540,173,87,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8490,173,37,63])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8502,173,49,7]),types.vector(["bootstrap/bootstrap-teachpack",8510,173,57,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8501,173,48,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8502,173,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8515,173,62,7]),types.vector(["bootstrap/bootstrap-teachpack",8523,173,70,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8514,173,61,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8515,173,62,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8528,173,75,7]),types.vector(["bootstrap/bootstrap-teachpack",8536,173,83,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8527,173,74,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8528,173,75,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8541,173,88,7]),types.vector(["bootstrap/bootstrap-teachpack",8549,173,96,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8540,173,87,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8541,173,88,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8257,170,24,6]),types.vector(["bootstrap/bootstrap-teachpack",8265,170,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8269,170,36,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8273,170,40,1]),types.vector(["bootstrap/bootstrap-teachpack",8275,170,42,29]),types.vector(["bootstrap/bootstrap-teachpack",8305,170,72,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8273,170,40,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8276,170,43,15]),types.vector(["bootstrap/bootstrap-teachpack",8292,170,59,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8275,170,42,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8276,170,43,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8348,171,40,11]),types.vector(["bootstrap/bootstrap-teachpack",8360,171,52,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8347,171,39,25])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8361,171,53,7]),types.vector(["bootstrap/bootstrap-teachpack",8369,171,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8360,171,52,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8361,171,53,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8413,172,40,11]),types.vector(["bootstrap/bootstrap-teachpack",8425,172,52,11]),types.vector(["bootstrap/bootstrap-teachpack",8437,172,64,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8412,172,39,37])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8426,172,53,7]),types.vector(["bootstrap/bootstrap-teachpack",8434,172,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8425,172,52,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8426,172,53,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8438,172,65,7]),types.vector(["bootstrap/bootstrap-teachpack",8446,172,73,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8437,172,64,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8438,172,65,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7459,162,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7464,162,35,1]),types.vector(["bootstrap/bootstrap-teachpack",7466,162,37,32]),types.vector(["bootstrap/bootstrap-teachpack",7499,162,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7464,162,35,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7467,162,38,15]),types.vector(["bootstrap/bootstrap-teachpack",7483,162,54,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7466,162,37,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7467,162,38,15])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7459,162,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7503,162,74,6]),types.vector(["bootstrap/bootstrap-teachpack",7510,162,81,17]),types.vector(["bootstrap/bootstrap-teachpack",7528,162,99,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7503,162,74,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7511,162,82,5]),types.vector(["bootstrap/bootstrap-teachpack",7517,162,88,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7510,162,81,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7511,162,82,5])},"rands":[{"$":"toplevel","depth":12,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7517,162,88,9])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7529,162,100,4]),types.vector(["bootstrap/bootstrap-teachpack",7534,162,105,6]),types.vector(["bootstrap/bootstrap-teachpack",7541,162,112,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7528,162,99,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7529,162,100,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7582,163,30,6]),types.vector(["bootstrap/bootstrap-teachpack",7590,163,38,1]),types.vector(["bootstrap/bootstrap-teachpack",7592,163,40,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7596,163,44,10]),types.vector(["bootstrap/bootstrap-teachpack",7607,163,55,54]),types.vector(["bootstrap/bootstrap-teachpack",7717,164,55,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7595,163,43,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7596,163,44,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7608,163,56,9]),types.vector(["bootstrap/bootstrap-teachpack",7618,163,66,11]),types.vector(["bootstrap/bootstrap-teachpack",7630,163,78,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7607,163,55,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7608,163,56,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7619,163,67,7]),types.vector(["bootstrap/bootstrap-teachpack",7627,163,75,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7618,163,66,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7619,163,67,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7631,163,79,14]),types.vector(["bootstrap/bootstrap-teachpack",7646,163,94,11]),types.vector(["bootstrap/bootstrap-teachpack",7658,163,106,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7630,163,78,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7647,163,95,7]),types.vector(["bootstrap/bootstrap-teachpack",7655,163,103,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7646,163,94,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7647,163,95,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7718,164,56,13]),types.vector(["bootstrap/bootstrap-teachpack",7732,164,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7717,164,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7718,164,56,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7768,165,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7773,165,35,1]),types.vector(["bootstrap/bootstrap-teachpack",7775,165,37,32]),types.vector(["bootstrap/bootstrap-teachpack",7808,165,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7773,165,35,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7776,165,38,15]),types.vector(["bootstrap/bootstrap-teachpack",7792,165,54,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7775,165,37,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7776,165,38,15])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7768,165,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7812,165,74,6]),types.vector(["bootstrap/bootstrap-teachpack",7819,165,81,17]),types.vector(["bootstrap/bootstrap-teachpack",7837,165,99,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7812,165,74,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7820,165,82,5]),types.vector(["bootstrap/bootstrap-teachpack",7826,165,88,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7819,165,81,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7820,165,82,5])},"rands":[{"$":"toplevel","depth":12,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7826,165,88,9])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7838,165,100,4]),types.vector(["bootstrap/bootstrap-teachpack",7843,165,105,5]),types.vector(["bootstrap/bootstrap-teachpack",7849,165,111,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7837,165,99,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7838,165,100,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7891,166,30,6]),types.vector(["bootstrap/bootstrap-teachpack",7899,166,38,1]),types.vector(["bootstrap/bootstrap-teachpack",7901,166,40,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7905,166,44,10]),types.vector(["bootstrap/bootstrap-teachpack",7916,166,55,54]),types.vector(["bootstrap/bootstrap-teachpack",8026,167,55,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7904,166,43,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7905,166,44,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7917,166,56,9]),types.vector(["bootstrap/bootstrap-teachpack",7927,166,66,30]),types.vector(["bootstrap/bootstrap-teachpack",7958,166,97,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7916,166,55,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7917,166,56,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7928,166,67,14]),types.vector(["bootstrap/bootstrap-teachpack",7943,166,82,11]),types.vector(["bootstrap/bootstrap-teachpack",7955,166,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7927,166,66,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7944,166,83,7]),types.vector(["bootstrap/bootstrap-teachpack",7952,166,91,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7943,166,82,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7944,166,83,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7959,166,98,7]),types.vector(["bootstrap/bootstrap-teachpack",7967,166,106,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7958,166,97,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7959,166,98,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8027,167,56,13]),types.vector(["bootstrap/bootstrap-teachpack",8041,167,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8026,167,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8027,167,56,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8082,168,35,6]),types.vector(["bootstrap/bootstrap-teachpack",8090,168,43,1]),types.vector(["bootstrap/bootstrap-teachpack",8092,168,45,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8096,168,49,10]),types.vector(["bootstrap/bootstrap-teachpack",8107,168,60,42]),types.vector(["bootstrap/bootstrap-teachpack",8210,169,60,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8095,168,48,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8096,168,49,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8108,168,61,14]),types.vector(["bootstrap/bootstrap-teachpack",8123,168,76,11]),types.vector(["bootstrap/bootstrap-teachpack",8135,168,88,11]),types.vector(["bootstrap/bootstrap-teachpack",8147,168,100,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8107,168,60,42])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8124,168,77,7]),types.vector(["bootstrap/bootstrap-teachpack",8132,168,85,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8123,168,76,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8124,168,77,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8136,168,89,7]),types.vector(["bootstrap/bootstrap-teachpack",8144,168,97,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8135,168,88,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8136,168,89,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8211,169,61,13]),types.vector(["bootstrap/bootstrap-teachpack",8225,169,75,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8210,169,60,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8211,169,61,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808]),types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])}]}}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7364,160,31,11]),types.vector(["bootstrap/bootstrap-teachpack",7376,160,43,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7363,160,30,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7364,160,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7304,159,27,11]),types.vector(["bootstrap/bootstrap-teachpack",7316,159,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7303,159,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7304,159,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7248,158,27,11]),types.vector(["bootstrap/bootstrap-teachpack",7260,158,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7247,158,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7248,158,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"toplevel","depth":1,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7214,157,24,5])}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7101,156,21,3]),types.vector(["bootstrap/bootstrap-teachpack",7105,156,25,71]),types.vector(["bootstrap/bootstrap-teachpack",7177,156,97,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7100,156,20,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7101,156,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7106,156,26,6]),types.vector(["bootstrap/bootstrap-teachpack",7114,156,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7118,156,38,10]),types.vector(["bootstrap/bootstrap-teachpack",7129,156,49,43]),types.vector(["bootstrap/bootstrap-teachpack",7173,156,93,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7117,156,37,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7118,156,38,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7130,156,50,9]),types.vector(["bootstrap/bootstrap-teachpack",7140,156,60,15]),types.vector(["bootstrap/bootstrap-teachpack",7156,156,76,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7129,156,49,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7130,156,50,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7141,156,61,1]),types.vector(["bootstrap/bootstrap-teachpack",7143,156,63,1]),types.vector(["bootstrap/bootstrap-teachpack",7145,156,65,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7140,156,60,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7141,156,61,1])},"rands":[{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7146,156,66,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7145,156,65,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7146,156,66,7])},"rands":[]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7157,156,77,6]),types.vector(["bootstrap/bootstrap-teachpack",7164,156,84,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7156,156,76,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7157,156,77,6])},"rands":[{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7164,156,84,6])}]}}}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6991,155,21,3]),types.vector(["bootstrap/bootstrap-teachpack",6995,155,25,71]),types.vector(["bootstrap/bootstrap-teachpack",7067,155,97,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6990,155,20,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6991,155,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6996,155,26,6]),types.vector(["bootstrap/bootstrap-teachpack",7004,155,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7008,155,38,10]),types.vector(["bootstrap/bootstrap-teachpack",7019,155,49,43]),types.vector(["bootstrap/bootstrap-teachpack",7063,155,93,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7007,155,37,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7008,155,38,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7020,155,50,9]),types.vector(["bootstrap/bootstrap-teachpack",7030,155,60,15]),types.vector(["bootstrap/bootstrap-teachpack",7046,155,76,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7019,155,49,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7020,155,50,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7031,155,61,1]),types.vector(["bootstrap/bootstrap-teachpack",7033,155,63,1]),types.vector(["bootstrap/bootstrap-teachpack",7035,155,65,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7030,155,60,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7031,155,61,1])},"rands":[{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7036,155,66,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7035,155,65,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7036,155,66,7])},"rands":[]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7047,155,77,6]),types.vector(["bootstrap/bootstrap-teachpack",7054,155,84,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7046,155,76,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7047,155,77,6])},"rands":[{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7054,155,84,6])}]}}}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6917,154,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6921,154,28,5]),types.vector(["bootstrap/bootstrap-teachpack",6927,154,34,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6921,154,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6951,154,58,4]),types.vector(["bootstrap/bootstrap-teachpack",6956,154,63,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6950,154,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6951,154,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6840,153,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6844,153,28,5]),types.vector(["bootstrap/bootstrap-teachpack",6850,153,34,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6844,153,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6874,153,58,4]),types.vector(["bootstrap/bootstrap-teachpack",6879,153,63,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6873,153,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6874,153,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6756,152,20,10]),types.vector(["bootstrap/bootstrap-teachpack",6767,152,31,36]),types.vector(["bootstrap/bootstrap-teachpack",6804,152,68,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6755,152,19,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6756,152,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6768,152,32,9]),types.vector(["bootstrap/bootstrap-teachpack",6778,152,42,11]),types.vector(["bootstrap/bootstrap-teachpack",6790,152,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6767,152,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6768,152,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6779,152,43,1]),types.vector(["bootstrap/bootstrap-teachpack",6781,152,45,5]),types.vector(["bootstrap/bootstrap-teachpack",6787,152,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6778,152,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6779,152,43,1])},"rands":[{"$":"toplevel","depth":7,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6781,152,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6791,152,55,1]),types.vector(["bootstrap/bootstrap-teachpack",6793,152,57,6]),types.vector(["bootstrap/bootstrap-teachpack",6800,152,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6790,152,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6791,152,55,1])},"rands":[{"$":"toplevel","depth":7,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6793,152,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10995,213,9,10])}],"body":{"$":"lam","name":types.symbol("test-frame"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",10995,213,9,10]),types.vector(["bootstrap/bootstrap-teachpack",11006,213,20,5]),types.vector(["bootstrap/bootstrap-teachpack",11012,213,26,2]),types.vector(["bootstrap/bootstrap-teachpack",11015,213,29,10]),types.vector(["bootstrap/bootstrap-teachpack",11026,213,40,10]),types.vector(["bootstrap/bootstrap-teachpack",11037,213,51,9]),types.vector(["bootstrap/bootstrap-teachpack",11047,213,61,14])],"flags":[],"num-params":6,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11072,214,9,65]),types.vector(["bootstrap/bootstrap-teachpack",11084,214,21,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11072,214,9,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11072,214,9,65]),types.vector(["bootstrap/bootstrap-teachpack",11073,214,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11147,215,9,65]),types.vector(["bootstrap/bootstrap-teachpack",11159,215,21,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11147,215,9,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11147,215,9,65]),types.vector(["bootstrap/bootstrap-teachpack",11148,215,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11222,216,9,51]),types.vector(["bootstrap/bootstrap-teachpack",11230,216,17,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11222,216,9,51])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11222,216,9,51]),types.vector(["bootstrap/bootstrap-teachpack",11223,216,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11283,217,9,92]),types.vector(["bootstrap/bootstrap-teachpack",11292,217,18,82])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11283,217,9,92])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11283,217,9,92]),types.vector(["bootstrap/bootstrap-teachpack",11284,217,10,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11385,218,9,92]),types.vector(["bootstrap/bootstrap-teachpack",11394,218,18,82])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11385,218,9,92])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11385,218,9,92]),types.vector(["bootstrap/bootstrap-teachpack",11386,218,10,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11487,219,9,75]),types.vector(["bootstrap/bootstrap-teachpack",11500,219,22,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11487,219,9,75])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11487,219,9,75]),types.vector(["bootstrap/bootstrap-teachpack",11488,219,10,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11572,220,9,200]),types.vector(["bootstrap/bootstrap-teachpack",11579,220,16,192])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11572,220,9,200])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11572,220,9,200]),types.vector(["bootstrap/bootstrap-teachpack",11573,220,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11779,225,5,10]),types.vector(["bootstrap/bootstrap-teachpack",11790,225,16,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11778,225,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11779,225,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11580,220,17,10]),types.vector(["bootstrap/bootstrap-teachpack",11591,220,28,7]),types.vector(["bootstrap/bootstrap-teachpack",11599,220,36,7]),types.vector(["bootstrap/bootstrap-teachpack",11607,220,44,6]),types.vector(["bootstrap/bootstrap-teachpack",11614,220,51,11]),types.vector(["bootstrap/bootstrap-teachpack",11654,221,28,20]),types.vector(["bootstrap/bootstrap-teachpack",11703,222,28,3]),types.vector(["bootstrap/bootstrap-teachpack",11735,223,28,5]),types.vector(["bootstrap/bootstrap-teachpack",11769,224,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11579,220,16,192])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11580,220,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11655,221,29,11]),types.vector(["bootstrap/bootstrap-teachpack",11667,221,41,2]),types.vector(["bootstrap/bootstrap-teachpack",11670,221,44,1]),types.vector(["bootstrap/bootstrap-teachpack",11672,221,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11654,221,28,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11655,221,29,11])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":100},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11501,219,23,4]),types.vector(["bootstrap/bootstrap-teachpack",11506,219,28,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11500,219,22,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11501,219,23,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11507,219,29,10]),types.vector(["bootstrap/bootstrap-teachpack",11518,219,40,18]),types.vector(["bootstrap/bootstrap-teachpack",11537,219,59,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11506,219,28,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11507,219,29,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11519,219,41,9]),types.vector(["bootstrap/bootstrap-teachpack",11529,219,51,4]),types.vector(["bootstrap/bootstrap-teachpack",11534,219,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11518,219,40,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11519,219,41,9])},"rands":[{"$":"constant","value":-200},{"$":"constant","value":0}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11538,219,60,5]),types.vector(["bootstrap/bootstrap-teachpack",11544,219,66,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11537,219,59,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11538,219,60,5])},"rands":[{"$":"toplevel","depth":5,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11544,219,66,14])}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11395,218,19,3]),types.vector(["bootstrap/bootstrap-teachpack",11399,218,23,65]),types.vector(["bootstrap/bootstrap-teachpack",11465,218,89,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11394,218,18,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11395,218,19,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11400,218,24,6]),types.vector(["bootstrap/bootstrap-teachpack",11408,218,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11412,218,36,10]),types.vector(["bootstrap/bootstrap-teachpack",11423,218,47,37]),types.vector(["bootstrap/bootstrap-teachpack",11461,218,85,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11411,218,35,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11412,218,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11424,218,48,9]),types.vector(["bootstrap/bootstrap-teachpack",11434,218,58,12]),types.vector(["bootstrap/bootstrap-teachpack",11447,218,71,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11423,218,47,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11424,218,48,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11435,218,59,6]),types.vector(["bootstrap/bootstrap-teachpack",11442,218,66,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11434,218,58,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11435,218,59,6])},"rands":[{"$":"constant","value":640}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11448,218,72,6]),types.vector(["bootstrap/bootstrap-teachpack",11455,218,79,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11447,218,71,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11448,218,72,6])},"rands":[{"$":"constant","value":480}]}}}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11293,217,19,3]),types.vector(["bootstrap/bootstrap-teachpack",11297,217,23,65]),types.vector(["bootstrap/bootstrap-teachpack",11363,217,89,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11292,217,18,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11293,217,19,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11298,217,24,6]),types.vector(["bootstrap/bootstrap-teachpack",11306,217,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11310,217,36,10]),types.vector(["bootstrap/bootstrap-teachpack",11321,217,47,37]),types.vector(["bootstrap/bootstrap-teachpack",11359,217,85,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11309,217,35,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11310,217,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11322,217,48,9]),types.vector(["bootstrap/bootstrap-teachpack",11332,217,58,12]),types.vector(["bootstrap/bootstrap-teachpack",11345,217,71,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11321,217,47,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11322,217,48,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11333,217,59,6]),types.vector(["bootstrap/bootstrap-teachpack",11340,217,66,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11332,217,58,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11333,217,59,6])},"rands":[{"$":"constant","value":640}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11346,217,72,6]),types.vector(["bootstrap/bootstrap-teachpack",11353,217,79,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11345,217,71,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11346,217,72,6])},"rands":[{"$":"constant","value":480}]}}}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11231,216,18,10]),types.vector(["bootstrap/bootstrap-teachpack",11242,216,29,19]),types.vector(["bootstrap/bootstrap-teachpack",11262,216,49,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11230,216,17,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11231,216,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11243,216,30,9]),types.vector(["bootstrap/bootstrap-teachpack",11253,216,40,3]),types.vector(["bootstrap/bootstrap-teachpack",11257,216,44,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11242,216,29,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11243,216,30,9])},"rands":[{"$":"constant","value":320},{"$":"constant","value":400}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11160,215,22,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11164,215,26,5]),types.vector(["bootstrap/bootstrap-teachpack",11170,215,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11164,215,26,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11194,215,56,4]),types.vector(["bootstrap/bootstrap-teachpack",11199,215,61,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11193,215,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11194,215,56,4])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11085,214,22,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11089,214,26,5]),types.vector(["bootstrap/bootstrap-teachpack",11095,214,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11089,214,26,5])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11119,214,56,4]),types.vector(["bootstrap/bootstrap-teachpack",11124,214,61,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11118,214,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11119,214,56,4])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11834,229,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",11834,229,9,2]),types.vector(["bootstrap/bootstrap-teachpack",11837,229,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11841,229,16,1]),types.vector(["bootstrap/bootstrap-teachpack",11843,229,18,1]),types.vector(["bootstrap/bootstrap-teachpack",11845,229,20,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11840,229,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11841,229,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11885,231,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",11885,231,9,4]),types.vector(["bootstrap/bootstrap-teachpack",11890,231,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11894,231,18,3]),types.vector(["bootstrap/bootstrap-teachpack",11898,231,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11893,231,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11894,231,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11899,231,23,1]),types.vector(["bootstrap/bootstrap-teachpack",11901,231,25,1]),types.vector(["bootstrap/bootstrap-teachpack",11903,231,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11898,231,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11899,231,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11904,231,28,1]),types.vector(["bootstrap/bootstrap-teachpack",11906,231,30,2]),types.vector(["bootstrap/bootstrap-teachpack",11909,231,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11903,231,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11904,231,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11906,231,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11955,233,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",11955,233,9,6]),types.vector(["bootstrap/bootstrap-teachpack",11962,233,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11966,233,20,3]),types.vector(["bootstrap/bootstrap-teachpack",11970,233,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11965,233,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11966,233,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11971,233,25,1]),types.vector(["bootstrap/bootstrap-teachpack",11973,233,27,1]),types.vector(["bootstrap/bootstrap-teachpack",11975,233,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11970,233,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11971,233,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11976,233,30,1]),types.vector(["bootstrap/bootstrap-teachpack",11978,233,32,2]),types.vector(["bootstrap/bootstrap-teachpack",11981,233,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11975,233,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11976,233,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11978,233,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12028,235,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",12028,235,9,7]),types.vector(["bootstrap/bootstrap-teachpack",12036,235,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",12040,235,21,3]),types.vector(["bootstrap/bootstrap-teachpack",12044,235,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",12039,235,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12040,235,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",12045,235,26,1]),types.vector(["bootstrap/bootstrap-teachpack",12047,235,28,1]),types.vector(["bootstrap/bootstrap-teachpack",12049,235,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",12044,235,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12045,235,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",12050,235,31,1]),types.vector(["bootstrap/bootstrap-teachpack",12052,235,33,2]),types.vector(["bootstrap/bootstrap-teachpack",12055,235,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",12049,235,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12050,235,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12052,235,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}}]}}, 'provides': ["score","sq","test-frame","tangent","sine","START","cosine"]}; +window.COLLECTIONS["bootstrap/bootstrap-teachpack"] = { 'name': "bootstrap/bootstrap-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"playerImg"},{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"objectImgs"},{"$":"global-bucket","value":"update-object*"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"update-projectile*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"offscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"update-object"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"update-projectile"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"objects"},{"$":"global-bucket","value":"keypress*"},{"$":"global-bucket","value":"projectiles"},{"$":"global-bucket","value":"t"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"offscreen?"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-projectiles"},{"$":"global-bucket","value":"world-objects"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"score"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"test-frame"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"move-all"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"check-collision"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"any-collide?"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"PROJECTILE-IMG"},{"$":"global-bucket","value":"START"},{"$":"global-bucket","value":"DIRECTION"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rest"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("key=?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",893,25,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",912,26,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",932,27,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",964,28,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",977,28,21,3]),types.vector(["bootstrap/bootstrap-teachpack",981,28,25,7]),types.vector(["bootstrap/bootstrap-teachpack",976,28,20,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",976,28,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",977,28,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",999,29,8,14])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1015,29,24,3]),types.vector(["bootstrap/bootstrap-teachpack",1019,29,28,31]),types.vector(["bootstrap/bootstrap-teachpack",1014,29,23,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1014,29,23,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1015,29,24,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1020,29,29,4]),types.vector(["bootstrap/bootstrap-teachpack",1025,29,34,1]),types.vector(["bootstrap/bootstrap-teachpack",1027,29,36,2]),types.vector(["bootstrap/bootstrap-teachpack",1030,29,39,2]),types.vector(["bootstrap/bootstrap-teachpack",1033,29,42,7]),types.vector(["bootstrap/bootstrap-teachpack",1041,29,50,8]),types.vector(["bootstrap/bootstrap-teachpack",1019,29,28,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1019,29,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1020,29,29,4])},"rands":[{"$":"constant","value":5},{"$":"constant","value":20},{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"yellow"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1061,30,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1073,30,20,3]),types.vector(["bootstrap/bootstrap-teachpack",1077,30,24,40]),types.vector(["bootstrap/bootstrap-teachpack",1072,30,19,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1072,30,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1073,30,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1078,30,25,9]),types.vector(["bootstrap/bootstrap-teachpack",1088,30,35,5]),types.vector(["bootstrap/bootstrap-teachpack",1094,30,41,6]),types.vector(["bootstrap/bootstrap-teachpack",1101,30,48,7]),types.vector(["bootstrap/bootstrap-teachpack",1109,30,56,7]),types.vector(["bootstrap/bootstrap-teachpack",1077,30,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1077,30,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1078,30,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1088,30,35,5])},{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1094,30,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1128,31,8,9])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1139,31,19,3]),types.vector(["bootstrap/bootstrap-teachpack",1143,31,23,6]),types.vector(["bootstrap/bootstrap-teachpack",1138,31,18,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1138,31,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1139,31,19,3])},"rands":[{"$":"constant","value":"left"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1160,32,8,5])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1167,32,15,3]),types.vector(["bootstrap/bootstrap-teachpack",1171,32,19,1]),types.vector(["bootstrap/bootstrap-teachpack",1166,32,14,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1166,32,14,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1167,32,15,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1214,34,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",1214,34,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1224,34,19,6]),types.vector(["bootstrap/bootstrap-teachpack",1231,34,26,3]),types.vector(["bootstrap/bootstrap-teachpack",1223,34,18,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1223,34,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1224,34,19,6])},"rands":[{"$":"constant","value":500}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1378,39,15,5])},{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36]),types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1363,39,0,36])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1517,42,15,5])},{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"toplevel","depth":0,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":8},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("objects")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("projectiles")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79]),types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},"rands":[{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1502,42,0,79])},{"$":"constant","value":7},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1622,45,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1631,45,17,7]),types.vector(["bootstrap/bootstrap-teachpack",1639,45,25,6]),types.vector(["bootstrap/bootstrap-teachpack",1646,45,32,10]),types.vector(["bootstrap/bootstrap-teachpack",1630,45,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1630,45,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1631,45,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1639,45,25,6])},{"$":"toplevel","depth":2,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1646,45,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1667,46,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1676,46,17,7]),types.vector(["bootstrap/bootstrap-teachpack",1684,46,25,6]),types.vector(["bootstrap/bootstrap-teachpack",1691,46,32,10]),types.vector(["bootstrap/bootstrap-teachpack",1675,46,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1675,46,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1676,46,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1684,46,25,6])},{"$":"toplevel","depth":2,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1691,46,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1759,49,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",1759,49,9,11]),types.vector(["bootstrap/bootstrap-teachpack",1771,49,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1778,49,28,9]),types.vector(["bootstrap/bootstrap-teachpack",1788,49,38,13]),types.vector(["bootstrap/bootstrap-teachpack",1802,49,52,28]),types.vector(["bootstrap/bootstrap-teachpack",1777,49,27,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1777,49,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1778,49,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1789,49,39,6]),types.vector(["bootstrap/bootstrap-teachpack",1796,49,46,4]),types.vector(["bootstrap/bootstrap-teachpack",1788,49,38,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1788,49,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1789,49,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1803,49,53,1]),types.vector(["bootstrap/bootstrap-teachpack",1805,49,55,6]),types.vector(["bootstrap/bootstrap-teachpack",1812,49,62,17]),types.vector(["bootstrap/bootstrap-teachpack",1802,49,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1802,49,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1803,49,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1805,49,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1813,49,63,1]),types.vector(["bootstrap/bootstrap-teachpack",1815,49,65,13]),types.vector(["bootstrap/bootstrap-teachpack",1812,49,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1812,49,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1813,49,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1816,49,66,6]),types.vector(["bootstrap/bootstrap-teachpack",1823,49,73,4]),types.vector(["bootstrap/bootstrap-teachpack",1815,49,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1815,49,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1816,49,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",1949,53,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",1949,53,9,10]),types.vector(["bootstrap/bootstrap-teachpack",1960,53,20,5]),types.vector(["bootstrap/bootstrap-teachpack",1966,53,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",1980,54,2,182]),types.vector(["bootstrap/bootstrap-teachpack",1999,54,21,32]),types.vector(["bootstrap/bootstrap-teachpack",1980,54,2,182])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1980,54,2,182])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",1980,54,2,182]),types.vector(["bootstrap/bootstrap-teachpack",1987,54,9,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2039,55,5,11]),types.vector(["bootstrap/bootstrap-teachpack",2051,55,17,21]),types.vector(["bootstrap/bootstrap-teachpack",2091,56,17,20]),types.vector(["bootstrap/bootstrap-teachpack",2112,56,38,20]),types.vector(["bootstrap/bootstrap-teachpack",2150,57,17,10]),types.vector(["bootstrap/bootstrap-teachpack",2038,55,4,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2038,55,4,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2039,55,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2052,55,18,13]),types.vector(["bootstrap/bootstrap-teachpack",2066,55,32,5]),types.vector(["bootstrap/bootstrap-teachpack",2051,55,17,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2051,55,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2052,55,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2092,56,18,6]),types.vector(["bootstrap/bootstrap-teachpack",2099,56,25,11]),types.vector(["bootstrap/bootstrap-teachpack",2091,56,17,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2091,56,17,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2092,56,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2113,56,39,6]),types.vector(["bootstrap/bootstrap-teachpack",2120,56,46,11]),types.vector(["bootstrap/bootstrap-teachpack",2112,56,38,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2112,56,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2113,56,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2000,54,22,11]),types.vector(["bootstrap/bootstrap-teachpack",2012,54,34,18]),types.vector(["bootstrap/bootstrap-teachpack",1999,54,21,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",1999,54,21,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2000,54,22,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2013,54,35,10]),types.vector(["bootstrap/bootstrap-teachpack",2024,54,46,5]),types.vector(["bootstrap/bootstrap-teachpack",2012,54,34,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2012,54,34,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2013,54,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2285,61,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",2285,61,9,10]),types.vector(["bootstrap/bootstrap-teachpack",2296,61,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2308,62,9,92]),types.vector(["bootstrap/bootstrap-teachpack",2322,62,23,77]),types.vector(["bootstrap/bootstrap-teachpack",2308,62,9,92])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2308,62,9,92])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",2308,62,9,92]),types.vector(["bootstrap/bootstrap-teachpack",2309,62,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2410,63,9,251]),types.vector(["bootstrap/bootstrap-teachpack",2418,63,17,242]),types.vector(["bootstrap/bootstrap-teachpack",2410,63,9,251])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2410,63,9,251])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",2410,63,9,251]),types.vector(["bootstrap/bootstrap-teachpack",2411,63,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2671,67,9,93]),types.vector(["bootstrap/bootstrap-teachpack",2683,67,21,80]),types.vector(["bootstrap/bootstrap-teachpack",2671,67,9,93])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2671,67,9,93])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",2671,67,9,93]),types.vector(["bootstrap/bootstrap-teachpack",2672,67,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2771,68,5,11]),types.vector(["bootstrap/bootstrap-teachpack",2783,68,17,42]),types.vector(["bootstrap/bootstrap-teachpack",2826,68,60,2]),types.vector(["bootstrap/bootstrap-teachpack",2829,68,63,1]),types.vector(["bootstrap/bootstrap-teachpack",2849,69,17,66]),types.vector(["bootstrap/bootstrap-teachpack",2770,68,4,146])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2770,68,4,146])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2771,68,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2784,68,18,4]),types.vector(["bootstrap/bootstrap-teachpack",2789,68,23,12]),types.vector(["bootstrap/bootstrap-teachpack",2802,68,36,2]),types.vector(["bootstrap/bootstrap-teachpack",2805,68,39,19]),types.vector(["bootstrap/bootstrap-teachpack",2783,68,17,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2783,68,17,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2784,68,18,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2806,68,40,5]),types.vector(["bootstrap/bootstrap-teachpack",2812,68,46,11]),types.vector(["bootstrap/bootstrap-teachpack",2805,68,39,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2805,68,39,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2806,68,40,5])},"rands":[{"$":"toplevel","depth":8,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2812,68,46,11])}]}}}]}}},{"$":"constant","value":10},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2850,69,18,5]),types.vector(["bootstrap/bootstrap-teachpack",2856,69,24,10]),types.vector(["bootstrap/bootstrap-teachpack",2867,69,35,36]),types.vector(["bootstrap/bootstrap-teachpack",2904,69,72,10]),types.vector(["bootstrap/bootstrap-teachpack",2849,69,17,66])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2849,69,17,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2850,69,18,5])},"rands":[{"$":"toplevel","depth":7,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2856,69,24,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2868,69,36,11]),types.vector(["bootstrap/bootstrap-teachpack",2880,69,48,18]),types.vector(["bootstrap/bootstrap-teachpack",2899,69,67,1]),types.vector(["bootstrap/bootstrap-teachpack",2901,69,69,1]),types.vector(["bootstrap/bootstrap-teachpack",2867,69,35,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2867,69,35,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2868,69,36,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2881,69,49,5]),types.vector(["bootstrap/bootstrap-teachpack",2887,69,55,10]),types.vector(["bootstrap/bootstrap-teachpack",2880,69,48,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2880,69,48,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2881,69,49,5])},"rands":[{"$":"toplevel","depth":11,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2887,69,55,10])}]}}},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2684,67,22,6]),types.vector(["bootstrap/bootstrap-teachpack",2691,67,29,17]),types.vector(["bootstrap/bootstrap-teachpack",2709,67,47,17]),types.vector(["bootstrap/bootstrap-teachpack",2727,67,65,21]),types.vector(["bootstrap/bootstrap-teachpack",2749,67,87,13]),types.vector(["bootstrap/bootstrap-teachpack",2683,67,21,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2683,67,21,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2684,67,22,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2692,67,30,13]),types.vector(["bootstrap/bootstrap-teachpack",2706,67,44,1]),types.vector(["bootstrap/bootstrap-teachpack",2691,67,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2691,67,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2692,67,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2710,67,48,13]),types.vector(["bootstrap/bootstrap-teachpack",2724,67,62,1]),types.vector(["bootstrap/bootstrap-teachpack",2709,67,47,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2709,67,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2710,67,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2728,67,66,17]),types.vector(["bootstrap/bootstrap-teachpack",2746,67,84,1]),types.vector(["bootstrap/bootstrap-teachpack",2727,67,65,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2727,67,65,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2728,67,66,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2750,67,88,4]),types.vector(["bootstrap/bootstrap-teachpack",2755,67,93,6]),types.vector(["bootstrap/bootstrap-teachpack",2749,67,87,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2749,67,87,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2750,67,88,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2419,63,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2423,63,22,1]),types.vector(["bootstrap/bootstrap-teachpack",2425,63,24,15]),types.vector(["bootstrap/bootstrap-teachpack",2441,63,40,1]),types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2423,63,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2426,63,25,11]),types.vector(["bootstrap/bootstrap-teachpack",2438,63,37,1]),types.vector(["bootstrap/bootstrap-teachpack",2425,63,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2425,63,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2426,63,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2422,63,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2466,64,22,10]),types.vector(["bootstrap/bootstrap-teachpack",2477,64,33,29]),types.vector(["bootstrap/bootstrap-teachpack",2540,65,33,80]),types.vector(["bootstrap/bootstrap-teachpack",2465,64,21,156])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2465,64,21,156])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2466,64,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2478,64,34,10]),types.vector(["bootstrap/bootstrap-teachpack",2489,64,45,16]),types.vector(["bootstrap/bootstrap-teachpack",2477,64,33,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2477,64,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2478,64,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2490,64,46,12]),types.vector(["bootstrap/bootstrap-teachpack",2503,64,59,1]),types.vector(["bootstrap/bootstrap-teachpack",2489,64,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2489,64,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2490,64,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2541,65,34,4]),types.vector(["bootstrap/bootstrap-teachpack",2546,65,39,1]),types.vector(["bootstrap/bootstrap-teachpack",2548,65,41,23]),types.vector(["bootstrap/bootstrap-teachpack",2572,65,65,23]),types.vector(["bootstrap/bootstrap-teachpack",2596,65,89,7]),types.vector(["bootstrap/bootstrap-teachpack",2604,65,97,15]),types.vector(["bootstrap/bootstrap-teachpack",2540,65,33,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2540,65,33,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2541,65,34,4])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2549,65,42,1]),types.vector(["bootstrap/bootstrap-teachpack",2551,65,44,3]),types.vector(["bootstrap/bootstrap-teachpack",2555,65,48,15]),types.vector(["bootstrap/bootstrap-teachpack",2548,65,41,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2548,65,41,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2549,65,42,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2556,65,49,11]),types.vector(["bootstrap/bootstrap-teachpack",2568,65,61,1]),types.vector(["bootstrap/bootstrap-teachpack",2555,65,48,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2555,65,48,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2556,65,49,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2573,65,66,1]),types.vector(["bootstrap/bootstrap-teachpack",2575,65,68,3]),types.vector(["bootstrap/bootstrap-teachpack",2579,65,72,15]),types.vector(["bootstrap/bootstrap-teachpack",2572,65,65,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2572,65,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2573,65,66,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2580,65,73,11]),types.vector(["bootstrap/bootstrap-teachpack",2592,65,85,1]),types.vector(["bootstrap/bootstrap-teachpack",2579,65,72,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2579,65,72,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2580,65,73,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":8,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2604,65,97,15])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2644,66,22,12]),types.vector(["bootstrap/bootstrap-teachpack",2657,66,35,1]),types.vector(["bootstrap/bootstrap-teachpack",2643,66,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2643,66,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2644,66,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2323,62,24,13]),types.vector(["bootstrap/bootstrap-teachpack",2337,62,38,15]),types.vector(["bootstrap/bootstrap-teachpack",2353,62,54,12]),types.vector(["bootstrap/bootstrap-teachpack",2366,62,67,32]),types.vector(["bootstrap/bootstrap-teachpack",2322,62,23,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2322,62,23,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2323,62,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2338,62,39,11]),types.vector(["bootstrap/bootstrap-teachpack",2350,62,51,1]),types.vector(["bootstrap/bootstrap-teachpack",2337,62,38,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2337,62,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2338,62,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2367,62,68,14]),types.vector(["bootstrap/bootstrap-teachpack",2382,62,83,15]),types.vector(["bootstrap/bootstrap-teachpack",2366,62,67,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2366,62,67,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2367,62,68,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",2383,62,84,11]),types.vector(["bootstrap/bootstrap-teachpack",2395,62,96,1]),types.vector(["bootstrap/bootstrap-teachpack",2382,62,83,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",2382,62,83,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",2383,62,84,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3078,74,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",3078,74,9,11]),types.vector(["bootstrap/bootstrap-teachpack",3090,74,21,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3107,76,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3112,76,11,1]),types.vector(["bootstrap/bootstrap-teachpack",3114,76,13,19]),types.vector(["bootstrap/bootstrap-teachpack",3134,76,33,1]),types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3112,76,11,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3115,76,14,15]),types.vector(["bootstrap/bootstrap-teachpack",3131,76,30,1]),types.vector(["bootstrap/bootstrap-teachpack",3114,76,13,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3114,76,13,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3115,76,14,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3111,76,10,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3107,76,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3138,76,37,6]),types.vector(["bootstrap/bootstrap-teachpack",3145,76,44,17]),types.vector(["bootstrap/bootstrap-teachpack",3163,76,62,21]),types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3138,76,37,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3146,76,45,5]),types.vector(["bootstrap/bootstrap-teachpack",3152,76,51,9]),types.vector(["bootstrap/bootstrap-teachpack",3145,76,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3145,76,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3146,76,45,5])},"rands":[{"$":"toplevel","depth":11,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3152,76,51,9])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3164,76,63,4]),types.vector(["bootstrap/bootstrap-teachpack",3169,76,68,5]),types.vector(["bootstrap/bootstrap-teachpack",3175,76,74,8]),types.vector(["bootstrap/bootstrap-teachpack",3163,76,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3163,76,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3164,76,63,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3137,76,36,48])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3106,76,5,80])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",3193,77,6,6]),types.vector(["bootstrap/bootstrap-teachpack",3201,77,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3205,77,18,10]),types.vector(["bootstrap/bootstrap-teachpack",3216,77,29,39]),types.vector(["bootstrap/bootstrap-teachpack",3256,77,69,17]),types.vector(["bootstrap/bootstrap-teachpack",3204,77,17,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3204,77,17,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3205,77,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3217,77,30,9]),types.vector(["bootstrap/bootstrap-teachpack",3227,77,40,11]),types.vector(["bootstrap/bootstrap-teachpack",3239,77,52,15]),types.vector(["bootstrap/bootstrap-teachpack",3216,77,29,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3216,77,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3217,77,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3228,77,41,7]),types.vector(["bootstrap/bootstrap-teachpack",3236,77,49,1]),types.vector(["bootstrap/bootstrap-teachpack",3227,77,40,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3227,77,40,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3228,77,41,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3240,77,53,1]),types.vector(["bootstrap/bootstrap-teachpack",3242,77,55,11]),types.vector(["bootstrap/bootstrap-teachpack",3239,77,52,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3239,77,52,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3243,77,56,7]),types.vector(["bootstrap/bootstrap-teachpack",3251,77,64,1]),types.vector(["bootstrap/bootstrap-teachpack",3242,77,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3242,77,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3243,77,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3257,77,70,13]),types.vector(["bootstrap/bootstrap-teachpack",3271,77,84,1]),types.vector(["bootstrap/bootstrap-teachpack",3256,77,69,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3256,77,69,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3257,77,70,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80]),types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3283,78,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3288,78,11,1]),types.vector(["bootstrap/bootstrap-teachpack",3290,78,13,19]),types.vector(["bootstrap/bootstrap-teachpack",3310,78,33,1]),types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3288,78,11,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3291,78,14,15]),types.vector(["bootstrap/bootstrap-teachpack",3307,78,30,1]),types.vector(["bootstrap/bootstrap-teachpack",3290,78,13,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3290,78,13,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3291,78,14,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3287,78,10,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3283,78,6,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3314,78,37,6]),types.vector(["bootstrap/bootstrap-teachpack",3321,78,44,17]),types.vector(["bootstrap/bootstrap-teachpack",3339,78,62,21]),types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3314,78,37,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3322,78,45,5]),types.vector(["bootstrap/bootstrap-teachpack",3328,78,51,9]),types.vector(["bootstrap/bootstrap-teachpack",3321,78,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3321,78,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3322,78,45,5])},"rands":[{"$":"toplevel","depth":11,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3328,78,51,9])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3340,78,63,4]),types.vector(["bootstrap/bootstrap-teachpack",3345,78,68,6]),types.vector(["bootstrap/bootstrap-teachpack",3352,78,75,7]),types.vector(["bootstrap/bootstrap-teachpack",3339,78,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3339,78,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3340,78,63,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3313,78,36,48])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3282,78,5,80])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",3369,79,6,6]),types.vector(["bootstrap/bootstrap-teachpack",3377,79,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3381,79,18,10]),types.vector(["bootstrap/bootstrap-teachpack",3392,79,29,39]),types.vector(["bootstrap/bootstrap-teachpack",3432,79,69,17]),types.vector(["bootstrap/bootstrap-teachpack",3380,79,17,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3380,79,17,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3381,79,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3393,79,30,9]),types.vector(["bootstrap/bootstrap-teachpack",3403,79,40,15]),types.vector(["bootstrap/bootstrap-teachpack",3419,79,56,11]),types.vector(["bootstrap/bootstrap-teachpack",3392,79,29,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3392,79,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3393,79,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3404,79,41,1]),types.vector(["bootstrap/bootstrap-teachpack",3406,79,43,11]),types.vector(["bootstrap/bootstrap-teachpack",3403,79,40,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3403,79,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3407,79,44,7]),types.vector(["bootstrap/bootstrap-teachpack",3415,79,52,1]),types.vector(["bootstrap/bootstrap-teachpack",3406,79,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3406,79,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3407,79,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3420,79,57,7]),types.vector(["bootstrap/bootstrap-teachpack",3428,79,65,1]),types.vector(["bootstrap/bootstrap-teachpack",3419,79,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3419,79,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3420,79,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3433,79,70,13]),types.vector(["bootstrap/bootstrap-teachpack",3447,79,84,1]),types.vector(["bootstrap/bootstrap-teachpack",3432,79,69,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3432,79,69,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3433,79,70,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4]),types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},{"$":"toplevel","depth":4,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3458,80,5,4])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",3464,80,11,6]),types.vector(["bootstrap/bootstrap-teachpack",3472,80,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3476,80,23,10]),types.vector(["bootstrap/bootstrap-teachpack",3487,80,34,27]),types.vector(["bootstrap/bootstrap-teachpack",3515,80,62,17]),types.vector(["bootstrap/bootstrap-teachpack",3475,80,22,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3475,80,22,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3476,80,23,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3488,80,35,1]),types.vector(["bootstrap/bootstrap-teachpack",3490,80,37,11]),types.vector(["bootstrap/bootstrap-teachpack",3502,80,49,11]),types.vector(["bootstrap/bootstrap-teachpack",3487,80,34,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3487,80,34,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3491,80,38,7]),types.vector(["bootstrap/bootstrap-teachpack",3499,80,46,1]),types.vector(["bootstrap/bootstrap-teachpack",3490,80,37,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3490,80,37,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3491,80,38,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3503,80,50,7]),types.vector(["bootstrap/bootstrap-teachpack",3511,80,58,1]),types.vector(["bootstrap/bootstrap-teachpack",3502,80,49,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3502,80,49,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3503,80,50,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3516,80,63,13]),types.vector(["bootstrap/bootstrap-teachpack",3530,80,77,1]),types.vector(["bootstrap/bootstrap-teachpack",3515,80,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3515,80,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3516,80,63,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441]),types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441]),types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3095,75,2,441])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3655,84,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",3655,84,9,5]),types.vector(["bootstrap/bootstrap-teachpack",3661,84,15,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3671,85,3,10]),types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366]),types.vector(["bootstrap/bootstrap-teachpack",4055,91,3,21]),types.vector(["bootstrap/bootstrap-teachpack",3670,85,2,407])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3670,85,2,407])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3671,85,3,10])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3699,87,7,8]),types.vector(["bootstrap/bootstrap-teachpack",3708,87,16,17]),types.vector(["bootstrap/bootstrap-teachpack",3726,87,34,6]),types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3699,87,7,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3709,87,17,5]),types.vector(["bootstrap/bootstrap-teachpack",3715,87,23,9]),types.vector(["bootstrap/bootstrap-teachpack",3708,87,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3708,87,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3709,87,17,5])},"rands":[{"$":"toplevel","depth":9,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3715,87,23,9])}]}}},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3698,87,6,35])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3735,87,43,9]),types.vector(["bootstrap/bootstrap-teachpack",3745,87,53,16]),types.vector(["bootstrap/bootstrap-teachpack",3762,87,70,15]),types.vector(["bootstrap/bootstrap-teachpack",3734,87,42,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3734,87,42,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3735,87,43,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3746,87,54,1]),types.vector(["bootstrap/bootstrap-teachpack",3748,87,56,9]),types.vector(["bootstrap/bootstrap-teachpack",3758,87,66,2]),types.vector(["bootstrap/bootstrap-teachpack",3745,87,53,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3745,87,53,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3746,87,54,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3749,87,57,7]),types.vector(["bootstrap/bootstrap-teachpack",3748,87,56,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3748,87,56,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3749,87,57,7])},"rands":[]}}},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3763,87,71,6]),types.vector(["bootstrap/bootstrap-teachpack",3770,87,78,6]),types.vector(["bootstrap/bootstrap-teachpack",3762,87,70,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3762,87,70,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3763,87,71,6])},"rands":[{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3770,87,78,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3787,88,7,8]),types.vector(["bootstrap/bootstrap-teachpack",3796,88,16,17]),types.vector(["bootstrap/bootstrap-teachpack",3814,88,34,7]),types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3787,88,7,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3797,88,17,5]),types.vector(["bootstrap/bootstrap-teachpack",3803,88,23,9]),types.vector(["bootstrap/bootstrap-teachpack",3796,88,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3796,88,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3797,88,17,5])},"rands":[{"$":"toplevel","depth":9,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3803,88,23,9])}]}}},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3786,88,6,36])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3824,88,44,9]),types.vector(["bootstrap/bootstrap-teachpack",3834,88,54,19]),types.vector(["bootstrap/bootstrap-teachpack",3854,88,74,15]),types.vector(["bootstrap/bootstrap-teachpack",3823,88,43,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3823,88,43,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3824,88,44,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3835,88,55,1]),types.vector(["bootstrap/bootstrap-teachpack",3837,88,57,9]),types.vector(["bootstrap/bootstrap-teachpack",3847,88,67,5]),types.vector(["bootstrap/bootstrap-teachpack",3834,88,54,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3834,88,54,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3835,88,55,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3838,88,58,7]),types.vector(["bootstrap/bootstrap-teachpack",3837,88,57,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3837,88,57,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3838,88,58,7])},"rands":[]}}},{"$":"toplevel","depth":6,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3847,88,67,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3855,88,75,6]),types.vector(["bootstrap/bootstrap-teachpack",3862,88,82,6]),types.vector(["bootstrap/bootstrap-teachpack",3854,88,74,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3854,88,74,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3855,88,75,6])},"rands":[{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3862,88,82,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3879,89,7,8]),types.vector(["bootstrap/bootstrap-teachpack",3888,89,16,17]),types.vector(["bootstrap/bootstrap-teachpack",3906,89,34,5]),types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3879,89,7,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3889,89,17,5]),types.vector(["bootstrap/bootstrap-teachpack",3895,89,23,9]),types.vector(["bootstrap/bootstrap-teachpack",3888,89,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3888,89,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3889,89,17,5])},"rands":[{"$":"toplevel","depth":9,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3895,89,23,9])}]}}},{"$":"constant","value":"top"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3878,89,6,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3914,89,42,9]),types.vector(["bootstrap/bootstrap-teachpack",3924,89,52,14]),types.vector(["bootstrap/bootstrap-teachpack",3939,89,67,20]),types.vector(["bootstrap/bootstrap-teachpack",3913,89,41,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3913,89,41,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3914,89,42,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3925,89,53,6]),types.vector(["bootstrap/bootstrap-teachpack",3932,89,60,5]),types.vector(["bootstrap/bootstrap-teachpack",3924,89,52,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3924,89,52,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3925,89,53,6])},"rands":[{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3932,89,60,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3940,89,68,1]),types.vector(["bootstrap/bootstrap-teachpack",3942,89,70,9]),types.vector(["bootstrap/bootstrap-teachpack",3952,89,80,6]),types.vector(["bootstrap/bootstrap-teachpack",3939,89,67,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3939,89,67,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3940,89,68,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3943,89,71,7]),types.vector(["bootstrap/bootstrap-teachpack",3942,89,70,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3942,89,70,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3943,89,71,7])},"rands":[]}}},{"$":"toplevel","depth":6,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3952,89,80,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3969,90,7,8]),types.vector(["bootstrap/bootstrap-teachpack",3978,90,16,17]),types.vector(["bootstrap/bootstrap-teachpack",3996,90,34,8]),types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3969,90,7,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3979,90,17,5]),types.vector(["bootstrap/bootstrap-teachpack",3985,90,23,9]),types.vector(["bootstrap/bootstrap-teachpack",3978,90,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3978,90,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3979,90,17,5])},"rands":[{"$":"toplevel","depth":9,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3985,90,23,9])}]}}},{"$":"constant","value":"bottom"}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3968,90,6,37])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4007,90,45,9]),types.vector(["bootstrap/bootstrap-teachpack",4017,90,55,14]),types.vector(["bootstrap/bootstrap-teachpack",4032,90,70,16]),types.vector(["bootstrap/bootstrap-teachpack",4006,90,44,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4006,90,44,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4007,90,45,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4018,90,56,6]),types.vector(["bootstrap/bootstrap-teachpack",4025,90,63,5]),types.vector(["bootstrap/bootstrap-teachpack",4017,90,55,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4017,90,55,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4018,90,56,6])},"rands":[{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4025,90,63,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4033,90,71,1]),types.vector(["bootstrap/bootstrap-teachpack",4035,90,73,9]),types.vector(["bootstrap/bootstrap-teachpack",4045,90,83,2]),types.vector(["bootstrap/bootstrap-teachpack",4032,90,70,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4032,90,70,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4033,90,71,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4036,90,74,7]),types.vector(["bootstrap/bootstrap-teachpack",4035,90,73,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4035,90,73,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4036,90,74,7])},"rands":[]}}},{"$":"constant","value":-1}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366]),types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366]),types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",3685,86,3,366])}]}}}}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4056,91,4,13]),types.vector(["bootstrap/bootstrap-teachpack",4070,91,18,5]),types.vector(["bootstrap/bootstrap-teachpack",4055,91,3,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4055,91,3,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4056,91,4,13])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4242,95,9,8])}],"body":{"$":"lam","name":types.symbol("move-all"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",4242,95,9,8]),types.vector(["bootstrap/bootstrap-teachpack",4251,95,18,6]),types.vector(["bootstrap/bootstrap-teachpack",4258,95,25,4]),types.vector(["bootstrap/bootstrap-teachpack",4263,95,30,10])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4278,96,3,3]),types.vector(["bootstrap/bootstrap-teachpack",4282,96,7,51]),types.vector(["bootstrap/bootstrap-teachpack",4334,96,59,6]),types.vector(["bootstrap/bootstrap-teachpack",4277,96,2,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4277,96,2,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4278,96,3,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",4283,96,8,6]),types.vector(["bootstrap/bootstrap-teachpack",4291,96,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4295,96,20,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4299,96,24,10]),types.vector(["bootstrap/bootstrap-teachpack",4310,96,35,1]),types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4298,96,23,14])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4314,96,39,5]),types.vector(["bootstrap/bootstrap-teachpack",4320,96,45,1]),types.vector(["bootstrap/bootstrap-teachpack",4313,96,38,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4313,96,38,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4314,96,39,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4324,96,49,4]),types.vector(["bootstrap/bootstrap-teachpack",4329,96,54,1]),types.vector(["bootstrap/bootstrap-teachpack",4323,96,48,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4323,96,48,8])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4574,101,9,8])}],"body":{"$":"lam","name":types.symbol("keypress"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",4574,101,9,8]),types.vector(["bootstrap/bootstrap-teachpack",4583,101,18,1]),types.vector(["bootstrap/bootstrap-teachpack",4585,101,20,3]),types.vector(["bootstrap/bootstrap-teachpack",4589,101,24,13])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4618,103,6,5]),types.vector(["bootstrap/bootstrap-teachpack",4624,103,12,3]),types.vector(["bootstrap/bootstrap-teachpack",4628,103,16,3]),types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4618,103,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4617,103,5,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4640,104,6,10]),types.vector(["bootstrap/bootstrap-teachpack",4651,104,17,17]),types.vector(["bootstrap/bootstrap-teachpack",4686,105,17,17]),types.vector(["bootstrap/bootstrap-teachpack",4721,106,17,16]),types.vector(["bootstrap/bootstrap-teachpack",4755,107,17,243]),types.vector(["bootstrap/bootstrap-teachpack",5016,111,17,12]),types.vector(["bootstrap/bootstrap-teachpack",5046,112,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5079,113,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5112,114,17,15]),types.vector(["bootstrap/bootstrap-teachpack",4639,104,5,489])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4639,104,5,489])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4640,104,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4652,104,18,13]),types.vector(["bootstrap/bootstrap-teachpack",4666,104,32,1]),types.vector(["bootstrap/bootstrap-teachpack",4651,104,17,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4651,104,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4652,104,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4687,105,18,13]),types.vector(["bootstrap/bootstrap-teachpack",4701,105,32,1]),types.vector(["bootstrap/bootstrap-teachpack",4686,105,17,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4686,105,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4687,105,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4722,106,18,12]),types.vector(["bootstrap/bootstrap-teachpack",4735,106,31,1]),types.vector(["bootstrap/bootstrap-teachpack",4721,106,17,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4721,106,17,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4722,106,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4756,107,18,4]),types.vector(["bootstrap/bootstrap-teachpack",4761,107,23,65]),types.vector(["bootstrap/bootstrap-teachpack",4850,108,23,147]),types.vector(["bootstrap/bootstrap-teachpack",4755,107,17,243])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4755,107,17,243])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4756,107,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4762,107,24,10]),types.vector(["bootstrap/bootstrap-teachpack",4773,107,35,29]),types.vector(["bootstrap/bootstrap-teachpack",4803,107,65,22]),types.vector(["bootstrap/bootstrap-teachpack",4761,107,23,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4761,107,23,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4762,107,24,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4774,107,36,10]),types.vector(["bootstrap/bootstrap-teachpack",4785,107,47,16]),types.vector(["bootstrap/bootstrap-teachpack",4773,107,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4773,107,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4774,107,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4786,107,48,12]),types.vector(["bootstrap/bootstrap-teachpack",4799,107,61,1]),types.vector(["bootstrap/bootstrap-teachpack",4785,107,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4785,107,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4786,107,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4804,107,66,5]),types.vector(["bootstrap/bootstrap-teachpack",4810,107,72,14]),types.vector(["bootstrap/bootstrap-teachpack",4803,107,65,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4803,107,65,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4804,107,66,5])},"rands":[{"$":"toplevel","depth":13,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4810,107,72,14])}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4851,108,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4855,108,28,1]),types.vector(["bootstrap/bootstrap-teachpack",4857,108,30,2]),types.vector(["bootstrap/bootstrap-teachpack",4860,108,33,30]),types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4855,108,28,1])},"rands":[{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4861,108,34,6]),types.vector(["bootstrap/bootstrap-teachpack",4868,108,41,21]),types.vector(["bootstrap/bootstrap-teachpack",4860,108,33,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4860,108,33,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":17,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4861,108,34,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4869,108,42,17]),types.vector(["bootstrap/bootstrap-teachpack",4887,108,60,1]),types.vector(["bootstrap/bootstrap-teachpack",4868,108,41,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4868,108,41,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":18,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4869,108,42,17])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4854,108,27,37])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4920,109,28,4]),types.vector(["bootstrap/bootstrap-teachpack",4925,109,33,21]),types.vector(["bootstrap/bootstrap-teachpack",4919,109,27,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4919,109,27,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4920,109,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4926,109,34,17]),types.vector(["bootstrap/bootstrap-teachpack",4944,109,52,1]),types.vector(["bootstrap/bootstrap-teachpack",4925,109,33,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4925,109,33,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4926,109,34,17])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4976,110,28,17]),types.vector(["bootstrap/bootstrap-teachpack",4994,110,46,1]),types.vector(["bootstrap/bootstrap-teachpack",4975,110,27,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4975,110,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4976,110,28,17])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5017,111,18,8]),types.vector(["bootstrap/bootstrap-teachpack",5026,111,27,1]),types.vector(["bootstrap/bootstrap-teachpack",5016,111,17,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5016,111,17,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5017,111,18,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5047,112,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5059,112,30,1]),types.vector(["bootstrap/bootstrap-teachpack",5046,112,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5046,112,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5047,112,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5080,113,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5092,113,30,1]),types.vector(["bootstrap/bootstrap-teachpack",5079,113,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5079,113,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5080,113,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5113,114,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5125,114,30,1]),types.vector(["bootstrap/bootstrap-teachpack",5112,114,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5112,114,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5113,114,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4]),types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])},{"$":"toplevel","depth":4,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5135,115,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5146,116,6,10]),types.vector(["bootstrap/bootstrap-teachpack",5157,116,17,17]),types.vector(["bootstrap/bootstrap-teachpack",5192,117,17,17]),types.vector(["bootstrap/bootstrap-teachpack",5227,118,17,36]),types.vector(["bootstrap/bootstrap-teachpack",5281,119,17,21]),types.vector(["bootstrap/bootstrap-teachpack",5320,120,17,12]),types.vector(["bootstrap/bootstrap-teachpack",5350,121,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5383,122,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5416,123,17,15]),types.vector(["bootstrap/bootstrap-teachpack",5145,116,5,287])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5145,116,5,287])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5146,116,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5158,116,18,13]),types.vector(["bootstrap/bootstrap-teachpack",5172,116,32,1]),types.vector(["bootstrap/bootstrap-teachpack",5157,116,17,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5157,116,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5158,116,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5193,117,18,13]),types.vector(["bootstrap/bootstrap-teachpack",5207,117,32,1]),types.vector(["bootstrap/bootstrap-teachpack",5192,117,17,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5192,117,17,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5193,117,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5228,118,18,13]),types.vector(["bootstrap/bootstrap-teachpack",5242,118,32,16]),types.vector(["bootstrap/bootstrap-teachpack",5259,118,49,3]),types.vector(["bootstrap/bootstrap-teachpack",5227,118,17,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5227,118,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5243,118,33,12]),types.vector(["bootstrap/bootstrap-teachpack",5256,118,46,1]),types.vector(["bootstrap/bootstrap-teachpack",5242,118,32,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5242,118,32,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5243,118,33,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5282,119,18,17]),types.vector(["bootstrap/bootstrap-teachpack",5300,119,36,1]),types.vector(["bootstrap/bootstrap-teachpack",5281,119,17,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5281,119,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5282,119,18,17])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5321,120,18,8]),types.vector(["bootstrap/bootstrap-teachpack",5330,120,27,1]),types.vector(["bootstrap/bootstrap-teachpack",5320,120,17,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5320,120,17,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5321,120,18,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5351,121,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5363,121,30,1]),types.vector(["bootstrap/bootstrap-teachpack",5350,121,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5350,121,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5351,121,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5384,122,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5396,122,30,1]),types.vector(["bootstrap/bootstrap-teachpack",5383,122,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5383,122,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5384,122,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5417,123,18,11]),types.vector(["bootstrap/bootstrap-teachpack",5429,123,30,1]),types.vector(["bootstrap/bootstrap-teachpack",5416,123,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5416,123,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5417,123,18,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828]),types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828]),types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",4606,102,2,828])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5558,127,9,12])}],"body":{"$":"lam","name":types.symbol("any-collide?"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",5558,127,9,12]),types.vector(["bootstrap/bootstrap-teachpack",5571,127,22,8]),types.vector(["bootstrap/bootstrap-teachpack",5580,127,31,1]),types.vector(["bootstrap/bootstrap-teachpack",5582,127,33,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5593,128,3,3]),types.vector(["bootstrap/bootstrap-teachpack",5597,128,7,52]),types.vector(["bootstrap/bootstrap-teachpack",5592,128,2,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5592,128,2,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5593,128,3,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5598,128,8,6]),types.vector(["bootstrap/bootstrap-teachpack",5605,128,15,43]),types.vector(["bootstrap/bootstrap-teachpack",5597,128,7,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5597,128,7,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5598,128,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5606,128,16,6]),types.vector(["bootstrap/bootstrap-teachpack",5613,128,23,27]),types.vector(["bootstrap/bootstrap-teachpack",5641,128,51,6]),types.vector(["bootstrap/bootstrap-teachpack",5605,128,15,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5605,128,15,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5606,128,16,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",5614,128,24,6]),types.vector(["bootstrap/bootstrap-teachpack",5622,128,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5626,128,36,8]),types.vector(["bootstrap/bootstrap-teachpack",5635,128,45,1]),types.vector(["bootstrap/bootstrap-teachpack",5637,128,47,1]),types.vector(["bootstrap/bootstrap-teachpack",5625,128,35,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5625,128,35,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5824,132,9,15])}],"body":{"$":"lam","name":types.symbol("check-collision"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",5824,132,9,15]),types.vector(["bootstrap/bootstrap-teachpack",5840,132,25,6]),types.vector(["bootstrap/bootstrap-teachpack",5847,132,32,11]),types.vector(["bootstrap/bootstrap-teachpack",5859,132,44,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5873,133,3,3]),types.vector(["bootstrap/bootstrap-teachpack",5877,133,7,138]),types.vector(["bootstrap/bootstrap-teachpack",6023,136,7,6]),types.vector(["bootstrap/bootstrap-teachpack",5872,133,2,158])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5872,133,2,158])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5873,133,3,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",5878,133,8,6]),types.vector(["bootstrap/bootstrap-teachpack",5886,133,16,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5894,133,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5898,133,28,12]),types.vector(["bootstrap/bootstrap-teachpack",5911,133,41,8]),types.vector(["bootstrap/bootstrap-teachpack",5920,133,50,5]),types.vector(["bootstrap/bootstrap-teachpack",5926,133,56,11]),types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5898,133,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5897,133,27,41])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",5968,134,28,5]),types.vector(["bootstrap/bootstrap-teachpack",5974,134,34,5]),types.vector(["bootstrap/bootstrap-teachpack",5967,134,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",5967,134,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",5968,134,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6334,142,9,5])}],"body":{"$":"lam","name":types.symbol("START"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",6334,142,9,5]),types.vector(["bootstrap/bootstrap-teachpack",6340,142,15,5]),types.vector(["bootstrap/bootstrap-teachpack",6346,142,21,11]),types.vector(["bootstrap/bootstrap-teachpack",6373,143,15,10]),types.vector(["bootstrap/bootstrap-teachpack",6384,143,26,10]),types.vector(["bootstrap/bootstrap-teachpack",6395,143,37,10]),types.vector(["bootstrap/bootstrap-teachpack",6406,143,48,9]),types.vector(["bootstrap/bootstrap-teachpack",6416,143,58,13]),types.vector(["bootstrap/bootstrap-teachpack",6445,144,15,9]),types.vector(["bootstrap/bootstrap-teachpack",6470,145,15,14]),types.vector(["bootstrap/bootstrap-teachpack",6485,145,30,14]),types.vector(["bootstrap/bootstrap-teachpack",6500,145,45,14]),types.vector(["bootstrap/bootstrap-teachpack",6515,145,60,18]),types.vector(["bootstrap/bootstrap-teachpack",6549,146,15,9]),types.vector(["bootstrap/bootstrap-teachpack",6559,146,25,11])],"flags":[],"num-params":14,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6586,148,5,8]),types.vector(["bootstrap/bootstrap-teachpack",6595,148,14,14]),types.vector(["bootstrap/bootstrap-teachpack",6610,148,29,13]),types.vector(["bootstrap/bootstrap-teachpack",6585,148,4,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6585,148,4,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6586,148,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6595,148,14,14])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6630,149,5,8]),types.vector(["bootstrap/bootstrap-teachpack",6639,149,14,11]),types.vector(["bootstrap/bootstrap-teachpack",6651,149,26,11]),types.vector(["bootstrap/bootstrap-teachpack",6629,149,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6629,149,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6630,149,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6639,149,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6669,150,5,8]),types.vector(["bootstrap/bootstrap-teachpack",6678,150,14,10]),types.vector(["bootstrap/bootstrap-teachpack",6689,150,25,10]),types.vector(["bootstrap/bootstrap-teachpack",6668,150,4,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6668,150,4,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6669,150,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6678,150,14,10])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6706,151,5,8]),types.vector(["bootstrap/bootstrap-teachpack",6715,151,14,9]),types.vector(["bootstrap/bootstrap-teachpack",6725,151,24,9]),types.vector(["bootstrap/bootstrap-teachpack",6705,151,4,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6705,151,4,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6706,151,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6715,151,14,9])},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6747,152,11,68]),types.vector(["bootstrap/bootstrap-teachpack",6755,152,19,59]),types.vector(["bootstrap/bootstrap-teachpack",6747,152,11,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6747,152,11,68])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6747,152,11,68]),types.vector(["bootstrap/bootstrap-teachpack",6748,152,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6827,153,11,65]),types.vector(["bootstrap/bootstrap-teachpack",6839,153,23,52]),types.vector(["bootstrap/bootstrap-teachpack",6827,153,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6827,153,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6827,153,11,65]),types.vector(["bootstrap/bootstrap-teachpack",6828,153,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6904,154,11,65]),types.vector(["bootstrap/bootstrap-teachpack",6916,154,23,52]),types.vector(["bootstrap/bootstrap-teachpack",6904,154,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6904,154,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6904,154,11,65]),types.vector(["bootstrap/bootstrap-teachpack",6905,154,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6981,155,11,98]),types.vector(["bootstrap/bootstrap-teachpack",6990,155,20,88]),types.vector(["bootstrap/bootstrap-teachpack",6981,155,11,98])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6981,155,11,98])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6981,155,11,98]),types.vector(["bootstrap/bootstrap-teachpack",6982,155,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7091,156,11,98]),types.vector(["bootstrap/bootstrap-teachpack",7100,156,20,88]),types.vector(["bootstrap/bootstrap-teachpack",7091,156,11,98])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7091,156,11,98])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7091,156,11,98]),types.vector(["bootstrap/bootstrap-teachpack",7092,156,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7201,157,11,19]),types.vector(["bootstrap/bootstrap-teachpack",7214,157,24,5]),types.vector(["bootstrap/bootstrap-teachpack",7201,157,11,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7201,157,11,19])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7201,157,11,19]),types.vector(["bootstrap/bootstrap-teachpack",7202,157,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7232,158,11,44]),types.vector(["bootstrap/bootstrap-teachpack",7247,158,26,28]),types.vector(["bootstrap/bootstrap-teachpack",7232,158,11,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7232,158,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7232,158,11,44]),types.vector(["bootstrap/bootstrap-teachpack",7233,158,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7288,159,11,44]),types.vector(["bootstrap/bootstrap-teachpack",7303,159,26,28]),types.vector(["bootstrap/bootstrap-teachpack",7288,159,11,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7288,159,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7288,159,11,44]),types.vector(["bootstrap/bootstrap-teachpack",7289,159,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7344,160,11,52]),types.vector(["bootstrap/bootstrap-teachpack",7363,160,30,32]),types.vector(["bootstrap/bootstrap-teachpack",7344,160,11,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7344,160,11,52])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7344,160,11,52]),types.vector(["bootstrap/bootstrap-teachpack",7345,160,12,17])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7408,161,11,824]),types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808]),types.vector(["bootstrap/bootstrap-teachpack",7408,161,11,824])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7408,161,11,824])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7408,161,11,824]),types.vector(["bootstrap/bootstrap-teachpack",7409,161,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8244,170,11,208]),types.vector(["bootstrap/bootstrap-teachpack",8256,170,23,195]),types.vector(["bootstrap/bootstrap-teachpack",8244,170,11,208])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8244,170,11,208])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8244,170,11,208]),types.vector(["bootstrap/bootstrap-teachpack",8245,170,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8464,173,11,91]),types.vector(["bootstrap/bootstrap-teachpack",8474,173,21,80]),types.vector(["bootstrap/bootstrap-teachpack",8464,173,11,91])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8464,173,11,91])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8464,173,11,91]),types.vector(["bootstrap/bootstrap-teachpack",8465,173,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8567,174,11,214]),types.vector(["bootstrap/bootstrap-teachpack",8574,174,18,206]),types.vector(["bootstrap/bootstrap-teachpack",8567,174,11,214])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8567,174,11,214])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8567,174,11,214]),types.vector(["bootstrap/bootstrap-teachpack",8568,174,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8793,179,11,55]),types.vector(["bootstrap/bootstrap-teachpack",8804,179,22,43]),types.vector(["bootstrap/bootstrap-teachpack",8793,179,11,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8793,179,11,55])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8793,179,11,55]),types.vector(["bootstrap/bootstrap-teachpack",8794,179,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8860,180,11,1860]),types.vector(["bootstrap/bootstrap-teachpack",8874,180,25,1845]),types.vector(["bootstrap/bootstrap-teachpack",8860,180,11,1860])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8860,180,11,1860])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8860,180,11,1860]),types.vector(["bootstrap/bootstrap-teachpack",8861,180,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10729,206,7,11]),types.vector(["bootstrap/bootstrap-teachpack",10741,206,19,5]),types.vector(["bootstrap/bootstrap-teachpack",10766,207,19,25]),types.vector(["bootstrap/bootstrap-teachpack",10811,208,19,22]),types.vector(["bootstrap/bootstrap-teachpack",10853,209,19,18]),types.vector(["bootstrap/bootstrap-teachpack",10728,206,6,144])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10728,206,6,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10729,206,7,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10767,207,20,7]),types.vector(["bootstrap/bootstrap-teachpack",10775,207,28,12]),types.vector(["bootstrap/bootstrap-teachpack",10788,207,41,2]),types.vector(["bootstrap/bootstrap-teachpack",10766,207,19,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10766,207,19,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10767,207,20,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10812,208,20,9]),types.vector(["bootstrap/bootstrap-teachpack",10822,208,30,10]),types.vector(["bootstrap/bootstrap-teachpack",10811,208,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10811,208,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10812,208,20,9])},"rands":[{"$":"toplevel","depth":5,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10822,208,30,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10854,209,20,6]),types.vector(["bootstrap/bootstrap-teachpack",10861,209,27,9]),types.vector(["bootstrap/bootstrap-teachpack",10853,209,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10853,209,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10854,209,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8875,180,26,6]),types.vector(["bootstrap/bootstrap-teachpack",8883,180,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8952,182,30,8]),types.vector(["bootstrap/bootstrap-teachpack",8961,182,39,5]),types.vector(["bootstrap/bootstrap-teachpack",8967,182,45,15]),types.vector(["bootstrap/bootstrap-teachpack",8951,182,29,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8951,182,29,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8952,182,30,8])},"rands":[{"$":"toplevel","depth":2,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8961,182,39,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8968,182,46,11]),types.vector(["bootstrap/bootstrap-teachpack",8980,182,58,1]),types.vector(["bootstrap/bootstrap-teachpack",8967,182,45,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8967,182,45,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8968,182,46,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9020,183,36,167]),types.vector(["bootstrap/bootstrap-teachpack",9029,183,45,157]),types.vector(["bootstrap/bootstrap-teachpack",9020,183,36,167])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9020,183,36,167])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9020,183,36,167]),types.vector(["bootstrap/bootstrap-teachpack",9021,183,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9224,185,36,63]),types.vector(["bootstrap/bootstrap-teachpack",9233,185,45,53]),types.vector(["bootstrap/bootstrap-teachpack",9224,185,36,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9224,185,36,63])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9224,185,36,63]),types.vector(["bootstrap/bootstrap-teachpack",9225,185,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9324,186,36,175]),types.vector(["bootstrap/bootstrap-teachpack",9337,186,49,161]),types.vector(["bootstrap/bootstrap-teachpack",9324,186,36,175])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9324,186,36,175])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9324,186,36,175]),types.vector(["bootstrap/bootstrap-teachpack",9325,186,37,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9536,188,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9543,188,43,15]),types.vector(["bootstrap/bootstrap-teachpack",9536,188,36,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9536,188,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9536,188,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9537,188,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9596,189,36,25]),types.vector(["bootstrap/bootstrap-teachpack",9604,189,44,16]),types.vector(["bootstrap/bootstrap-teachpack",9596,189,36,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9596,189,36,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9596,189,36,25]),types.vector(["bootstrap/bootstrap-teachpack",9597,189,37,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9658,190,36,17]),types.vector(["bootstrap/bootstrap-teachpack",9662,190,40,12]),types.vector(["bootstrap/bootstrap-teachpack",9658,190,36,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9658,190,36,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9658,190,36,17]),types.vector(["bootstrap/bootstrap-teachpack",9659,190,37,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9712,191,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9719,191,43,15]),types.vector(["bootstrap/bootstrap-teachpack",9712,191,36,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9712,191,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9712,191,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9713,191,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9772,192,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9779,192,43,15]),types.vector(["bootstrap/bootstrap-teachpack",9772,192,36,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9772,192,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9772,192,36,23]),types.vector(["bootstrap/bootstrap-teachpack",9773,192,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9869,194,35,1]),types.vector(["bootstrap/bootstrap-teachpack",9871,194,37,5]),types.vector(["bootstrap/bootstrap-teachpack",9877,194,43,1]),types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9869,194,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9868,194,34,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9915,195,35,10]),types.vector(["bootstrap/bootstrap-teachpack",9926,195,46,7]),types.vector(["bootstrap/bootstrap-teachpack",9934,195,54,7]),types.vector(["bootstrap/bootstrap-teachpack",9942,195,62,6]),types.vector(["bootstrap/bootstrap-teachpack",9949,195,69,11]),types.vector(["bootstrap/bootstrap-teachpack",9961,195,81,2]),types.vector(["bootstrap/bootstrap-teachpack",9964,195,84,5]),types.vector(["bootstrap/bootstrap-teachpack",9970,195,90,5]),types.vector(["bootstrap/bootstrap-teachpack",9976,195,96,12]),types.vector(["bootstrap/bootstrap-teachpack",9914,195,34,75])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9914,195,34,75])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9915,195,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9977,195,97,1]),types.vector(["bootstrap/bootstrap-teachpack",9979,195,99,5]),types.vector(["bootstrap/bootstrap-teachpack",9985,195,105,2]),types.vector(["bootstrap/bootstrap-teachpack",9976,195,96,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9976,195,96,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9977,195,97,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10026,196,35,12]),types.vector(["bootstrap/bootstrap-teachpack",10039,196,48,8]),types.vector(["bootstrap/bootstrap-teachpack",10048,196,57,6]),types.vector(["bootstrap/bootstrap-teachpack",10055,196,64,7]),types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10026,196,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10025,196,34,38])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10208,199,37,10]),types.vector(["bootstrap/bootstrap-teachpack",10219,199,48,7]),types.vector(["bootstrap/bootstrap-teachpack",10227,199,56,7]),types.vector(["bootstrap/bootstrap-teachpack",10235,199,64,6]),types.vector(["bootstrap/bootstrap-teachpack",10242,199,71,11]),types.vector(["bootstrap/bootstrap-teachpack",10254,199,83,2]),types.vector(["bootstrap/bootstrap-teachpack",10257,199,86,12]),types.vector(["bootstrap/bootstrap-teachpack",10270,199,99,5]),types.vector(["bootstrap/bootstrap-teachpack",10276,199,105,3]),types.vector(["bootstrap/bootstrap-teachpack",10207,199,36,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10207,199,36,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10208,199,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10258,199,87,1]),types.vector(["bootstrap/bootstrap-teachpack",10260,199,89,5]),types.vector(["bootstrap/bootstrap-teachpack",10266,199,95,2]),types.vector(["bootstrap/bootstrap-teachpack",10257,199,86,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10257,199,86,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10258,199,87,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":50}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10318,200,35,12]),types.vector(["bootstrap/bootstrap-teachpack",10331,200,48,8]),types.vector(["bootstrap/bootstrap-teachpack",10340,200,57,6]),types.vector(["bootstrap/bootstrap-teachpack",10347,200,64,7]),types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10318,200,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10317,200,34,38])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10502,203,37,10]),types.vector(["bootstrap/bootstrap-teachpack",10513,203,48,7]),types.vector(["bootstrap/bootstrap-teachpack",10521,203,56,7]),types.vector(["bootstrap/bootstrap-teachpack",10529,203,64,6]),types.vector(["bootstrap/bootstrap-teachpack",10536,203,71,11]),types.vector(["bootstrap/bootstrap-teachpack",10548,203,83,2]),types.vector(["bootstrap/bootstrap-teachpack",10551,203,86,12]),types.vector(["bootstrap/bootstrap-teachpack",10564,203,99,5]),types.vector(["bootstrap/bootstrap-teachpack",10570,203,105,3]),types.vector(["bootstrap/bootstrap-teachpack",10501,203,36,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10501,203,36,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10502,203,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10552,203,87,1]),types.vector(["bootstrap/bootstrap-teachpack",10554,203,89,5]),types.vector(["bootstrap/bootstrap-teachpack",10560,203,95,2]),types.vector(["bootstrap/bootstrap-teachpack",10551,203,86,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10551,203,86,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10552,203,87,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":20}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4]),types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},{"$":"toplevel","depth":4,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10611,204,34,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",10617,204,40,10]),types.vector(["bootstrap/bootstrap-teachpack",10628,204,51,7]),types.vector(["bootstrap/bootstrap-teachpack",10636,204,59,7]),types.vector(["bootstrap/bootstrap-teachpack",10644,204,67,6]),types.vector(["bootstrap/bootstrap-teachpack",10651,204,74,11]),types.vector(["bootstrap/bootstrap-teachpack",10663,204,86,2]),types.vector(["bootstrap/bootstrap-teachpack",10666,204,89,5]),types.vector(["bootstrap/bootstrap-teachpack",10672,204,95,5]),types.vector(["bootstrap/bootstrap-teachpack",10678,204,101,5]),types.vector(["bootstrap/bootstrap-teachpack",10616,204,39,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",10616,204,39,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10617,204,40,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858]),types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858]),types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9828,193,31,858])}]}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9780,192,44,11]),types.vector(["bootstrap/bootstrap-teachpack",9792,192,56,1]),types.vector(["bootstrap/bootstrap-teachpack",9779,192,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9779,192,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9780,192,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9720,191,44,11]),types.vector(["bootstrap/bootstrap-teachpack",9732,191,56,1]),types.vector(["bootstrap/bootstrap-teachpack",9719,191,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9719,191,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9720,191,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9663,190,41,8]),types.vector(["bootstrap/bootstrap-teachpack",9672,190,50,1]),types.vector(["bootstrap/bootstrap-teachpack",9662,190,40,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9662,190,40,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9663,190,41,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9605,189,45,12]),types.vector(["bootstrap/bootstrap-teachpack",9618,189,58,1]),types.vector(["bootstrap/bootstrap-teachpack",9604,189,44,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9604,189,44,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9605,189,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9544,188,44,11]),types.vector(["bootstrap/bootstrap-teachpack",9556,188,56,1]),types.vector(["bootstrap/bootstrap-teachpack",9543,188,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9543,188,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9544,188,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9338,186,50,6]),types.vector(["bootstrap/bootstrap-teachpack",9345,186,57,33]),types.vector(["bootstrap/bootstrap-teachpack",9436,187,57,61]),types.vector(["bootstrap/bootstrap-teachpack",9337,186,49,161])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9337,186,49,161])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9338,186,50,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",9346,186,58,6]),types.vector(["bootstrap/bootstrap-teachpack",9354,186,66,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9358,186,70,3]),types.vector(["bootstrap/bootstrap-teachpack",9362,186,74,14]),types.vector(["bootstrap/bootstrap-teachpack",9357,186,69,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9357,186,69,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9358,186,70,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9363,186,75,10]),types.vector(["bootstrap/bootstrap-teachpack",9374,186,86,1]),types.vector(["bootstrap/bootstrap-teachpack",9362,186,74,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9362,186,74,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9437,187,58,8]),types.vector(["bootstrap/bootstrap-teachpack",9446,187,67,21]),types.vector(["bootstrap/bootstrap-teachpack",9468,187,89,17]),types.vector(["bootstrap/bootstrap-teachpack",9486,187,107,10]),types.vector(["bootstrap/bootstrap-teachpack",9436,187,57,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9436,187,57,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9437,187,58,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9447,187,68,17]),types.vector(["bootstrap/bootstrap-teachpack",9465,187,86,1]),types.vector(["bootstrap/bootstrap-teachpack",9446,187,67,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9446,187,67,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9447,187,68,17])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9234,185,46,8]),types.vector(["bootstrap/bootstrap-teachpack",9243,185,55,17]),types.vector(["bootstrap/bootstrap-teachpack",9261,185,73,13]),types.vector(["bootstrap/bootstrap-teachpack",9275,185,87,10]),types.vector(["bootstrap/bootstrap-teachpack",9233,185,45,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9233,185,45,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9234,185,46,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9244,185,56,13]),types.vector(["bootstrap/bootstrap-teachpack",9258,185,70,1]),types.vector(["bootstrap/bootstrap-teachpack",9243,185,55,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9243,185,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9244,185,56,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9030,183,46,8]),types.vector(["bootstrap/bootstrap-teachpack",9039,183,55,66]),types.vector(["bootstrap/bootstrap-teachpack",9161,184,55,13]),types.vector(["bootstrap/bootstrap-teachpack",9175,184,69,10]),types.vector(["bootstrap/bootstrap-teachpack",9029,183,45,157])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9029,183,45,157])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9030,183,46,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9040,183,56,15]),types.vector(["bootstrap/bootstrap-teachpack",9056,183,72,17]),types.vector(["bootstrap/bootstrap-teachpack",9074,183,90,21]),types.vector(["bootstrap/bootstrap-teachpack",9096,183,112,8]),types.vector(["bootstrap/bootstrap-teachpack",9039,183,55,66])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9039,183,55,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9040,183,56,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9057,183,73,13]),types.vector(["bootstrap/bootstrap-teachpack",9071,183,87,1]),types.vector(["bootstrap/bootstrap-teachpack",9056,183,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9056,183,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9057,183,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",9075,183,91,17]),types.vector(["bootstrap/bootstrap-teachpack",9093,183,109,1]),types.vector(["bootstrap/bootstrap-teachpack",9074,183,90,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",9074,183,90,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",9075,183,91,17])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8805,179,23,6]),types.vector(["bootstrap/bootstrap-teachpack",8813,179,31,1]),types.vector(["bootstrap/bootstrap-teachpack",8815,179,33,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8819,179,37,8]),types.vector(["bootstrap/bootstrap-teachpack",8828,179,46,1]),types.vector(["bootstrap/bootstrap-teachpack",8830,179,48,1]),types.vector(["bootstrap/bootstrap-teachpack",8832,179,50,13]),types.vector(["bootstrap/bootstrap-teachpack",8818,179,36,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8818,179,36,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8819,179,37,8])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8575,174,19,10]),types.vector(["bootstrap/bootstrap-teachpack",8586,174,30,7]),types.vector(["bootstrap/bootstrap-teachpack",8594,174,38,7]),types.vector(["bootstrap/bootstrap-teachpack",8602,174,46,6]),types.vector(["bootstrap/bootstrap-teachpack",8609,174,53,11]),types.vector(["bootstrap/bootstrap-teachpack",8651,175,30,28]),types.vector(["bootstrap/bootstrap-teachpack",8710,176,30,1]),types.vector(["bootstrap/bootstrap-teachpack",8742,177,30,5]),types.vector(["bootstrap/bootstrap-teachpack",8778,178,30,1]),types.vector(["bootstrap/bootstrap-teachpack",8574,174,18,206])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8574,174,18,206])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8575,174,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8652,175,31,11]),types.vector(["bootstrap/bootstrap-teachpack",8664,175,43,10]),types.vector(["bootstrap/bootstrap-teachpack",8675,175,54,1]),types.vector(["bootstrap/bootstrap-teachpack",8677,175,56,1]),types.vector(["bootstrap/bootstrap-teachpack",8651,175,30,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8651,175,30,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8652,175,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8475,173,22,6]),types.vector(["bootstrap/bootstrap-teachpack",8483,173,30,2]),types.vector(["bootstrap/bootstrap-teachpack",8486,173,33,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8491,173,38,9]),types.vector(["bootstrap/bootstrap-teachpack",8501,173,48,12]),types.vector(["bootstrap/bootstrap-teachpack",8514,173,61,12]),types.vector(["bootstrap/bootstrap-teachpack",8527,173,74,12]),types.vector(["bootstrap/bootstrap-teachpack",8540,173,87,12]),types.vector(["bootstrap/bootstrap-teachpack",8490,173,37,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8490,173,37,63])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8502,173,49,7]),types.vector(["bootstrap/bootstrap-teachpack",8510,173,57,2]),types.vector(["bootstrap/bootstrap-teachpack",8501,173,48,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8501,173,48,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8502,173,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8515,173,62,7]),types.vector(["bootstrap/bootstrap-teachpack",8523,173,70,2]),types.vector(["bootstrap/bootstrap-teachpack",8514,173,61,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8514,173,61,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8515,173,62,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8528,173,75,7]),types.vector(["bootstrap/bootstrap-teachpack",8536,173,83,2]),types.vector(["bootstrap/bootstrap-teachpack",8527,173,74,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8527,173,74,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8528,173,75,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8541,173,88,7]),types.vector(["bootstrap/bootstrap-teachpack",8549,173,96,2]),types.vector(["bootstrap/bootstrap-teachpack",8540,173,87,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8540,173,87,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8541,173,88,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8257,170,24,6]),types.vector(["bootstrap/bootstrap-teachpack",8265,170,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8269,170,36,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8273,170,40,1]),types.vector(["bootstrap/bootstrap-teachpack",8275,170,42,29]),types.vector(["bootstrap/bootstrap-teachpack",8305,170,72,1]),types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8273,170,40,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8276,170,43,15]),types.vector(["bootstrap/bootstrap-teachpack",8292,170,59,11]),types.vector(["bootstrap/bootstrap-teachpack",8275,170,42,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8275,170,42,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8276,170,43,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8272,170,39,35])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8348,171,40,11]),types.vector(["bootstrap/bootstrap-teachpack",8360,171,52,11]),types.vector(["bootstrap/bootstrap-teachpack",8347,171,39,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8347,171,39,25])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8361,171,53,7]),types.vector(["bootstrap/bootstrap-teachpack",8369,171,61,1]),types.vector(["bootstrap/bootstrap-teachpack",8360,171,52,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8360,171,52,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8361,171,53,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8413,172,40,11]),types.vector(["bootstrap/bootstrap-teachpack",8425,172,52,11]),types.vector(["bootstrap/bootstrap-teachpack",8437,172,64,11]),types.vector(["bootstrap/bootstrap-teachpack",8412,172,39,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8412,172,39,37])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8426,172,53,7]),types.vector(["bootstrap/bootstrap-teachpack",8434,172,61,1]),types.vector(["bootstrap/bootstrap-teachpack",8425,172,52,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8425,172,52,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8426,172,53,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8438,172,65,7]),types.vector(["bootstrap/bootstrap-teachpack",8446,172,73,1]),types.vector(["bootstrap/bootstrap-teachpack",8437,172,64,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8437,172,64,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8438,172,65,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7459,162,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7464,162,35,1]),types.vector(["bootstrap/bootstrap-teachpack",7466,162,37,32]),types.vector(["bootstrap/bootstrap-teachpack",7499,162,70,1]),types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7464,162,35,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7467,162,38,15]),types.vector(["bootstrap/bootstrap-teachpack",7483,162,54,14]),types.vector(["bootstrap/bootstrap-teachpack",7466,162,37,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7466,162,37,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7467,162,38,15])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7463,162,34,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7459,162,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7503,162,74,6]),types.vector(["bootstrap/bootstrap-teachpack",7510,162,81,17]),types.vector(["bootstrap/bootstrap-teachpack",7528,162,99,21]),types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7503,162,74,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7511,162,82,5]),types.vector(["bootstrap/bootstrap-teachpack",7517,162,88,9]),types.vector(["bootstrap/bootstrap-teachpack",7510,162,81,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7510,162,81,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7511,162,82,5])},"rands":[{"$":"toplevel","depth":12,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7517,162,88,9])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7529,162,100,4]),types.vector(["bootstrap/bootstrap-teachpack",7534,162,105,6]),types.vector(["bootstrap/bootstrap-teachpack",7541,162,112,7]),types.vector(["bootstrap/bootstrap-teachpack",7528,162,99,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7528,162,99,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7529,162,100,4])},"rands":[{"$":"constant","value":"left"},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7502,162,73,48])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7458,162,29,93])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7582,163,30,6]),types.vector(["bootstrap/bootstrap-teachpack",7590,163,38,1]),types.vector(["bootstrap/bootstrap-teachpack",7592,163,40,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7596,163,44,10]),types.vector(["bootstrap/bootstrap-teachpack",7607,163,55,54]),types.vector(["bootstrap/bootstrap-teachpack",7717,164,55,17]),types.vector(["bootstrap/bootstrap-teachpack",7595,163,43,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7595,163,43,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7596,163,44,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7608,163,56,9]),types.vector(["bootstrap/bootstrap-teachpack",7618,163,66,11]),types.vector(["bootstrap/bootstrap-teachpack",7630,163,78,30]),types.vector(["bootstrap/bootstrap-teachpack",7607,163,55,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7607,163,55,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7608,163,56,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7619,163,67,7]),types.vector(["bootstrap/bootstrap-teachpack",7627,163,75,1]),types.vector(["bootstrap/bootstrap-teachpack",7618,163,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7618,163,66,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7619,163,67,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7631,163,79,14]),types.vector(["bootstrap/bootstrap-teachpack",7646,163,94,11]),types.vector(["bootstrap/bootstrap-teachpack",7658,163,106,1]),types.vector(["bootstrap/bootstrap-teachpack",7630,163,78,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7630,163,78,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7647,163,95,7]),types.vector(["bootstrap/bootstrap-teachpack",7655,163,103,1]),types.vector(["bootstrap/bootstrap-teachpack",7646,163,94,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7646,163,94,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7647,163,95,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7718,164,56,13]),types.vector(["bootstrap/bootstrap-teachpack",7732,164,70,1]),types.vector(["bootstrap/bootstrap-teachpack",7717,164,55,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7717,164,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7718,164,56,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93]),types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7768,165,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7773,165,35,1]),types.vector(["bootstrap/bootstrap-teachpack",7775,165,37,32]),types.vector(["bootstrap/bootstrap-teachpack",7808,165,70,1]),types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7773,165,35,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7776,165,38,15]),types.vector(["bootstrap/bootstrap-teachpack",7792,165,54,14]),types.vector(["bootstrap/bootstrap-teachpack",7775,165,37,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7775,165,37,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7776,165,38,15])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7772,165,34,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7768,165,30,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7812,165,74,6]),types.vector(["bootstrap/bootstrap-teachpack",7819,165,81,17]),types.vector(["bootstrap/bootstrap-teachpack",7837,165,99,21]),types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7812,165,74,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7820,165,82,5]),types.vector(["bootstrap/bootstrap-teachpack",7826,165,88,9]),types.vector(["bootstrap/bootstrap-teachpack",7819,165,81,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7819,165,81,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7820,165,82,5])},"rands":[{"$":"toplevel","depth":12,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7826,165,88,9])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7838,165,100,4]),types.vector(["bootstrap/bootstrap-teachpack",7843,165,105,5]),types.vector(["bootstrap/bootstrap-teachpack",7849,165,111,8]),types.vector(["bootstrap/bootstrap-teachpack",7837,165,99,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7837,165,99,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7838,165,100,4])},"rands":[{"$":"constant","value":"top"},{"$":"constant","value":"bottom"}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7811,165,73,48])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7767,165,29,93])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7891,166,30,6]),types.vector(["bootstrap/bootstrap-teachpack",7899,166,38,1]),types.vector(["bootstrap/bootstrap-teachpack",7901,166,40,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7905,166,44,10]),types.vector(["bootstrap/bootstrap-teachpack",7916,166,55,54]),types.vector(["bootstrap/bootstrap-teachpack",8026,167,55,17]),types.vector(["bootstrap/bootstrap-teachpack",7904,166,43,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7904,166,43,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7905,166,44,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7917,166,56,9]),types.vector(["bootstrap/bootstrap-teachpack",7927,166,66,30]),types.vector(["bootstrap/bootstrap-teachpack",7958,166,97,11]),types.vector(["bootstrap/bootstrap-teachpack",7916,166,55,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7916,166,55,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7917,166,56,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7928,166,67,14]),types.vector(["bootstrap/bootstrap-teachpack",7943,166,82,11]),types.vector(["bootstrap/bootstrap-teachpack",7955,166,94,1]),types.vector(["bootstrap/bootstrap-teachpack",7927,166,66,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7927,166,66,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7944,166,83,7]),types.vector(["bootstrap/bootstrap-teachpack",7952,166,91,1]),types.vector(["bootstrap/bootstrap-teachpack",7943,166,82,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7943,166,82,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7944,166,83,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7959,166,98,7]),types.vector(["bootstrap/bootstrap-teachpack",7967,166,106,1]),types.vector(["bootstrap/bootstrap-teachpack",7958,166,97,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7958,166,97,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7959,166,98,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8027,167,56,13]),types.vector(["bootstrap/bootstrap-teachpack",8041,167,70,1]),types.vector(["bootstrap/bootstrap-teachpack",8026,167,55,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8026,167,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8027,167,56,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4]),types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8076,168,29,4])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",8082,168,35,6]),types.vector(["bootstrap/bootstrap-teachpack",8090,168,43,1]),types.vector(["bootstrap/bootstrap-teachpack",8092,168,45,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8096,168,49,10]),types.vector(["bootstrap/bootstrap-teachpack",8107,168,60,42]),types.vector(["bootstrap/bootstrap-teachpack",8210,169,60,17]),types.vector(["bootstrap/bootstrap-teachpack",8095,168,48,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8095,168,48,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8096,168,49,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8108,168,61,14]),types.vector(["bootstrap/bootstrap-teachpack",8123,168,76,11]),types.vector(["bootstrap/bootstrap-teachpack",8135,168,88,11]),types.vector(["bootstrap/bootstrap-teachpack",8147,168,100,1]),types.vector(["bootstrap/bootstrap-teachpack",8107,168,60,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8107,168,60,42])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8124,168,77,7]),types.vector(["bootstrap/bootstrap-teachpack",8132,168,85,1]),types.vector(["bootstrap/bootstrap-teachpack",8123,168,76,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8123,168,76,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8124,168,77,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8136,168,89,7]),types.vector(["bootstrap/bootstrap-teachpack",8144,168,97,1]),types.vector(["bootstrap/bootstrap-teachpack",8135,168,88,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8135,168,88,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8136,168,89,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",8211,169,61,13]),types.vector(["bootstrap/bootstrap-teachpack",8225,169,75,1]),types.vector(["bootstrap/bootstrap-teachpack",8210,169,60,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",8210,169,60,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",8211,169,61,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808]),types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808]),types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])},"rands":[{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7423,161,26,808])}]}}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7364,160,31,11]),types.vector(["bootstrap/bootstrap-teachpack",7376,160,43,18]),types.vector(["bootstrap/bootstrap-teachpack",7363,160,30,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7363,160,30,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7364,160,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7304,159,27,11]),types.vector(["bootstrap/bootstrap-teachpack",7316,159,39,14]),types.vector(["bootstrap/bootstrap-teachpack",7303,159,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7303,159,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7304,159,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7248,158,27,11]),types.vector(["bootstrap/bootstrap-teachpack",7260,158,39,14]),types.vector(["bootstrap/bootstrap-teachpack",7247,158,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7247,158,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7248,158,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"toplevel","depth":1,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7214,157,24,5])}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7101,156,21,3]),types.vector(["bootstrap/bootstrap-teachpack",7105,156,25,71]),types.vector(["bootstrap/bootstrap-teachpack",7177,156,97,10]),types.vector(["bootstrap/bootstrap-teachpack",7100,156,20,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7100,156,20,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7101,156,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",7106,156,26,6]),types.vector(["bootstrap/bootstrap-teachpack",7114,156,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7118,156,38,10]),types.vector(["bootstrap/bootstrap-teachpack",7129,156,49,43]),types.vector(["bootstrap/bootstrap-teachpack",7173,156,93,1]),types.vector(["bootstrap/bootstrap-teachpack",7117,156,37,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7117,156,37,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7118,156,38,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7130,156,50,9]),types.vector(["bootstrap/bootstrap-teachpack",7140,156,60,15]),types.vector(["bootstrap/bootstrap-teachpack",7156,156,76,15]),types.vector(["bootstrap/bootstrap-teachpack",7129,156,49,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7129,156,49,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7130,156,50,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7141,156,61,1]),types.vector(["bootstrap/bootstrap-teachpack",7143,156,63,1]),types.vector(["bootstrap/bootstrap-teachpack",7145,156,65,9]),types.vector(["bootstrap/bootstrap-teachpack",7140,156,60,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7140,156,60,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7141,156,61,1])},"rands":[{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7146,156,66,7]),types.vector(["bootstrap/bootstrap-teachpack",7145,156,65,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7145,156,65,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7146,156,66,7])},"rands":[]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7157,156,77,6]),types.vector(["bootstrap/bootstrap-teachpack",7164,156,84,6]),types.vector(["bootstrap/bootstrap-teachpack",7156,156,76,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7156,156,76,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7157,156,77,6])},"rands":[{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7164,156,84,6])}]}}}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6991,155,21,3]),types.vector(["bootstrap/bootstrap-teachpack",6995,155,25,71]),types.vector(["bootstrap/bootstrap-teachpack",7067,155,97,10]),types.vector(["bootstrap/bootstrap-teachpack",6990,155,20,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6990,155,20,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6991,155,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",6996,155,26,6]),types.vector(["bootstrap/bootstrap-teachpack",7004,155,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7008,155,38,10]),types.vector(["bootstrap/bootstrap-teachpack",7019,155,49,43]),types.vector(["bootstrap/bootstrap-teachpack",7063,155,93,1]),types.vector(["bootstrap/bootstrap-teachpack",7007,155,37,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7007,155,37,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7008,155,38,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7020,155,50,9]),types.vector(["bootstrap/bootstrap-teachpack",7030,155,60,15]),types.vector(["bootstrap/bootstrap-teachpack",7046,155,76,15]),types.vector(["bootstrap/bootstrap-teachpack",7019,155,49,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7019,155,49,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7020,155,50,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7031,155,61,1]),types.vector(["bootstrap/bootstrap-teachpack",7033,155,63,1]),types.vector(["bootstrap/bootstrap-teachpack",7035,155,65,9]),types.vector(["bootstrap/bootstrap-teachpack",7030,155,60,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7030,155,60,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7031,155,61,1])},"rands":[{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7036,155,66,7]),types.vector(["bootstrap/bootstrap-teachpack",7035,155,65,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7035,155,65,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7036,155,66,7])},"rands":[]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",7047,155,77,6]),types.vector(["bootstrap/bootstrap-teachpack",7054,155,84,6]),types.vector(["bootstrap/bootstrap-teachpack",7046,155,76,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",7046,155,76,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7047,155,77,6])},"rands":[{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",7054,155,84,6])}]}}}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6917,154,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6921,154,28,5]),types.vector(["bootstrap/bootstrap-teachpack",6927,154,34,10]),types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6921,154,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6920,154,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6951,154,58,4]),types.vector(["bootstrap/bootstrap-teachpack",6956,154,63,10]),types.vector(["bootstrap/bootstrap-teachpack",6950,154,57,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6950,154,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6951,154,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6840,153,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6844,153,28,5]),types.vector(["bootstrap/bootstrap-teachpack",6850,153,34,10]),types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6844,153,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6843,153,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6874,153,58,4]),types.vector(["bootstrap/bootstrap-teachpack",6879,153,63,10]),types.vector(["bootstrap/bootstrap-teachpack",6873,153,57,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6873,153,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6874,153,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6756,152,20,10]),types.vector(["bootstrap/bootstrap-teachpack",6767,152,31,36]),types.vector(["bootstrap/bootstrap-teachpack",6804,152,68,9]),types.vector(["bootstrap/bootstrap-teachpack",6755,152,19,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6755,152,19,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6756,152,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6768,152,32,9]),types.vector(["bootstrap/bootstrap-teachpack",6778,152,42,11]),types.vector(["bootstrap/bootstrap-teachpack",6790,152,54,12]),types.vector(["bootstrap/bootstrap-teachpack",6767,152,31,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6767,152,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6768,152,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6779,152,43,1]),types.vector(["bootstrap/bootstrap-teachpack",6781,152,45,5]),types.vector(["bootstrap/bootstrap-teachpack",6787,152,51,1]),types.vector(["bootstrap/bootstrap-teachpack",6778,152,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6778,152,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6779,152,43,1])},"rands":[{"$":"toplevel","depth":7,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6781,152,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",6791,152,55,1]),types.vector(["bootstrap/bootstrap-teachpack",6793,152,57,6]),types.vector(["bootstrap/bootstrap-teachpack",6800,152,64,1]),types.vector(["bootstrap/bootstrap-teachpack",6790,152,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",6790,152,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6791,152,55,1])},"rands":[{"$":"toplevel","depth":7,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",6793,152,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",10995,213,9,10])}],"body":{"$":"lam","name":types.symbol("test-frame"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",10995,213,9,10]),types.vector(["bootstrap/bootstrap-teachpack",11006,213,20,5]),types.vector(["bootstrap/bootstrap-teachpack",11012,213,26,2]),types.vector(["bootstrap/bootstrap-teachpack",11015,213,29,10]),types.vector(["bootstrap/bootstrap-teachpack",11026,213,40,10]),types.vector(["bootstrap/bootstrap-teachpack",11037,213,51,9]),types.vector(["bootstrap/bootstrap-teachpack",11047,213,61,14])],"flags":[],"num-params":6,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11072,214,9,65]),types.vector(["bootstrap/bootstrap-teachpack",11084,214,21,52]),types.vector(["bootstrap/bootstrap-teachpack",11072,214,9,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11072,214,9,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11072,214,9,65]),types.vector(["bootstrap/bootstrap-teachpack",11073,214,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11147,215,9,65]),types.vector(["bootstrap/bootstrap-teachpack",11159,215,21,52]),types.vector(["bootstrap/bootstrap-teachpack",11147,215,9,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11147,215,9,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11147,215,9,65]),types.vector(["bootstrap/bootstrap-teachpack",11148,215,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11222,216,9,51]),types.vector(["bootstrap/bootstrap-teachpack",11230,216,17,42]),types.vector(["bootstrap/bootstrap-teachpack",11222,216,9,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11222,216,9,51])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11222,216,9,51]),types.vector(["bootstrap/bootstrap-teachpack",11223,216,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11283,217,9,92]),types.vector(["bootstrap/bootstrap-teachpack",11292,217,18,82]),types.vector(["bootstrap/bootstrap-teachpack",11283,217,9,92])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11283,217,9,92])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11283,217,9,92]),types.vector(["bootstrap/bootstrap-teachpack",11284,217,10,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11385,218,9,92]),types.vector(["bootstrap/bootstrap-teachpack",11394,218,18,82]),types.vector(["bootstrap/bootstrap-teachpack",11385,218,9,92])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11385,218,9,92])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11385,218,9,92]),types.vector(["bootstrap/bootstrap-teachpack",11386,218,10,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11487,219,9,75]),types.vector(["bootstrap/bootstrap-teachpack",11500,219,22,61]),types.vector(["bootstrap/bootstrap-teachpack",11487,219,9,75])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11487,219,9,75])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11487,219,9,75]),types.vector(["bootstrap/bootstrap-teachpack",11488,219,10,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11572,220,9,200]),types.vector(["bootstrap/bootstrap-teachpack",11579,220,16,192]),types.vector(["bootstrap/bootstrap-teachpack",11572,220,9,200])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11572,220,9,200])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11572,220,9,200]),types.vector(["bootstrap/bootstrap-teachpack",11573,220,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11779,225,5,10]),types.vector(["bootstrap/bootstrap-teachpack",11790,225,16,5]),types.vector(["bootstrap/bootstrap-teachpack",11778,225,4,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11778,225,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11779,225,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11580,220,17,10]),types.vector(["bootstrap/bootstrap-teachpack",11591,220,28,7]),types.vector(["bootstrap/bootstrap-teachpack",11599,220,36,7]),types.vector(["bootstrap/bootstrap-teachpack",11607,220,44,6]),types.vector(["bootstrap/bootstrap-teachpack",11614,220,51,11]),types.vector(["bootstrap/bootstrap-teachpack",11654,221,28,20]),types.vector(["bootstrap/bootstrap-teachpack",11703,222,28,3]),types.vector(["bootstrap/bootstrap-teachpack",11735,223,28,5]),types.vector(["bootstrap/bootstrap-teachpack",11769,224,28,1]),types.vector(["bootstrap/bootstrap-teachpack",11579,220,16,192])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11579,220,16,192])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11580,220,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11655,221,29,11]),types.vector(["bootstrap/bootstrap-teachpack",11667,221,41,2]),types.vector(["bootstrap/bootstrap-teachpack",11670,221,44,1]),types.vector(["bootstrap/bootstrap-teachpack",11672,221,46,1]),types.vector(["bootstrap/bootstrap-teachpack",11654,221,28,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11654,221,28,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11655,221,29,11])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":100},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11501,219,23,4]),types.vector(["bootstrap/bootstrap-teachpack",11506,219,28,54]),types.vector(["bootstrap/bootstrap-teachpack",11500,219,22,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11500,219,22,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11501,219,23,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11507,219,29,10]),types.vector(["bootstrap/bootstrap-teachpack",11518,219,40,18]),types.vector(["bootstrap/bootstrap-teachpack",11537,219,59,22]),types.vector(["bootstrap/bootstrap-teachpack",11506,219,28,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11506,219,28,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11507,219,29,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11519,219,41,9]),types.vector(["bootstrap/bootstrap-teachpack",11529,219,51,4]),types.vector(["bootstrap/bootstrap-teachpack",11534,219,56,1]),types.vector(["bootstrap/bootstrap-teachpack",11518,219,40,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11518,219,40,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11519,219,41,9])},"rands":[{"$":"constant","value":-200},{"$":"constant","value":0}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11538,219,60,5]),types.vector(["bootstrap/bootstrap-teachpack",11544,219,66,14]),types.vector(["bootstrap/bootstrap-teachpack",11537,219,59,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11537,219,59,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11538,219,60,5])},"rands":[{"$":"toplevel","depth":5,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11544,219,66,14])}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11395,218,19,3]),types.vector(["bootstrap/bootstrap-teachpack",11399,218,23,65]),types.vector(["bootstrap/bootstrap-teachpack",11465,218,89,10]),types.vector(["bootstrap/bootstrap-teachpack",11394,218,18,82])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11394,218,18,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11395,218,19,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11400,218,24,6]),types.vector(["bootstrap/bootstrap-teachpack",11408,218,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11412,218,36,10]),types.vector(["bootstrap/bootstrap-teachpack",11423,218,47,37]),types.vector(["bootstrap/bootstrap-teachpack",11461,218,85,1]),types.vector(["bootstrap/bootstrap-teachpack",11411,218,35,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11411,218,35,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11412,218,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11424,218,48,9]),types.vector(["bootstrap/bootstrap-teachpack",11434,218,58,12]),types.vector(["bootstrap/bootstrap-teachpack",11447,218,71,12]),types.vector(["bootstrap/bootstrap-teachpack",11423,218,47,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11423,218,47,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11424,218,48,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11435,218,59,6]),types.vector(["bootstrap/bootstrap-teachpack",11442,218,66,3]),types.vector(["bootstrap/bootstrap-teachpack",11434,218,58,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11434,218,58,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11435,218,59,6])},"rands":[{"$":"constant","value":640}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11448,218,72,6]),types.vector(["bootstrap/bootstrap-teachpack",11455,218,79,3]),types.vector(["bootstrap/bootstrap-teachpack",11447,218,71,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11447,218,71,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11448,218,72,6])},"rands":[{"$":"constant","value":480}]}}}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11293,217,19,3]),types.vector(["bootstrap/bootstrap-teachpack",11297,217,23,65]),types.vector(["bootstrap/bootstrap-teachpack",11363,217,89,10]),types.vector(["bootstrap/bootstrap-teachpack",11292,217,18,82])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11292,217,18,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11293,217,19,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/bootstrap-teachpack",11298,217,24,6]),types.vector(["bootstrap/bootstrap-teachpack",11306,217,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11310,217,36,10]),types.vector(["bootstrap/bootstrap-teachpack",11321,217,47,37]),types.vector(["bootstrap/bootstrap-teachpack",11359,217,85,1]),types.vector(["bootstrap/bootstrap-teachpack",11309,217,35,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11309,217,35,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11310,217,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11322,217,48,9]),types.vector(["bootstrap/bootstrap-teachpack",11332,217,58,12]),types.vector(["bootstrap/bootstrap-teachpack",11345,217,71,12]),types.vector(["bootstrap/bootstrap-teachpack",11321,217,47,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11321,217,47,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11322,217,48,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11333,217,59,6]),types.vector(["bootstrap/bootstrap-teachpack",11340,217,66,3]),types.vector(["bootstrap/bootstrap-teachpack",11332,217,58,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11332,217,58,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11333,217,59,6])},"rands":[{"$":"constant","value":640}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11346,217,72,6]),types.vector(["bootstrap/bootstrap-teachpack",11353,217,79,3]),types.vector(["bootstrap/bootstrap-teachpack",11345,217,71,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11345,217,71,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11346,217,72,6])},"rands":[{"$":"constant","value":480}]}}}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11231,216,18,10]),types.vector(["bootstrap/bootstrap-teachpack",11242,216,29,19]),types.vector(["bootstrap/bootstrap-teachpack",11262,216,49,9]),types.vector(["bootstrap/bootstrap-teachpack",11230,216,17,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11230,216,17,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11231,216,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11243,216,30,9]),types.vector(["bootstrap/bootstrap-teachpack",11253,216,40,3]),types.vector(["bootstrap/bootstrap-teachpack",11257,216,44,3]),types.vector(["bootstrap/bootstrap-teachpack",11242,216,29,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11242,216,29,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11243,216,30,9])},"rands":[{"$":"constant","value":320},{"$":"constant","value":400}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11160,215,22,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11164,215,26,5]),types.vector(["bootstrap/bootstrap-teachpack",11170,215,32,10]),types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11164,215,26,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11163,215,25,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11194,215,56,4]),types.vector(["bootstrap/bootstrap-teachpack",11199,215,61,10]),types.vector(["bootstrap/bootstrap-teachpack",11193,215,55,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11193,215,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11194,215,56,4])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11085,214,22,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11089,214,26,5]),types.vector(["bootstrap/bootstrap-teachpack",11095,214,32,10]),types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11089,214,26,5])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11088,214,25,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11119,214,56,4]),types.vector(["bootstrap/bootstrap-teachpack",11124,214,61,10]),types.vector(["bootstrap/bootstrap-teachpack",11118,214,55,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11118,214,55,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11119,214,56,4])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11834,229,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",11834,229,9,2]),types.vector(["bootstrap/bootstrap-teachpack",11837,229,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11841,229,16,1]),types.vector(["bootstrap/bootstrap-teachpack",11843,229,18,1]),types.vector(["bootstrap/bootstrap-teachpack",11845,229,20,1]),types.vector(["bootstrap/bootstrap-teachpack",11840,229,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11840,229,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11841,229,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11885,231,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",11885,231,9,4]),types.vector(["bootstrap/bootstrap-teachpack",11890,231,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11894,231,18,3]),types.vector(["bootstrap/bootstrap-teachpack",11898,231,22,16]),types.vector(["bootstrap/bootstrap-teachpack",11893,231,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11893,231,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11894,231,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11899,231,23,1]),types.vector(["bootstrap/bootstrap-teachpack",11901,231,25,1]),types.vector(["bootstrap/bootstrap-teachpack",11903,231,27,10]),types.vector(["bootstrap/bootstrap-teachpack",11898,231,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11898,231,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11899,231,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11904,231,28,1]),types.vector(["bootstrap/bootstrap-teachpack",11906,231,30,2]),types.vector(["bootstrap/bootstrap-teachpack",11909,231,33,3]),types.vector(["bootstrap/bootstrap-teachpack",11903,231,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11903,231,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11904,231,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11906,231,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11955,233,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",11955,233,9,6]),types.vector(["bootstrap/bootstrap-teachpack",11962,233,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11966,233,20,3]),types.vector(["bootstrap/bootstrap-teachpack",11970,233,24,16]),types.vector(["bootstrap/bootstrap-teachpack",11965,233,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11965,233,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11966,233,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11971,233,25,1]),types.vector(["bootstrap/bootstrap-teachpack",11973,233,27,1]),types.vector(["bootstrap/bootstrap-teachpack",11975,233,29,10]),types.vector(["bootstrap/bootstrap-teachpack",11970,233,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11970,233,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11971,233,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",11976,233,30,1]),types.vector(["bootstrap/bootstrap-teachpack",11978,233,32,2]),types.vector(["bootstrap/bootstrap-teachpack",11981,233,35,3]),types.vector(["bootstrap/bootstrap-teachpack",11975,233,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",11975,233,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11976,233,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",11978,233,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12028,235,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap/bootstrap-teachpack",12028,235,9,7]),types.vector(["bootstrap/bootstrap-teachpack",12036,235,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",12040,235,21,3]),types.vector(["bootstrap/bootstrap-teachpack",12044,235,25,16]),types.vector(["bootstrap/bootstrap-teachpack",12039,235,20,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",12039,235,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12040,235,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",12045,235,26,1]),types.vector(["bootstrap/bootstrap-teachpack",12047,235,28,1]),types.vector(["bootstrap/bootstrap-teachpack",12049,235,30,10]),types.vector(["bootstrap/bootstrap-teachpack",12044,235,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",12044,235,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12045,235,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/bootstrap-teachpack",12050,235,31,1]),types.vector(["bootstrap/bootstrap-teachpack",12052,235,33,2]),types.vector(["bootstrap/bootstrap-teachpack",12055,235,36,3]),types.vector(["bootstrap/bootstrap-teachpack",12049,235,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/bootstrap-teachpack",12049,235,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12050,235,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/bootstrap-teachpack",12052,235,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}}]}}, 'provides': ["score","sq","test-frame","tangent","sine","START","cosine"]}; diff --git a/servlet-htdocs/collects/bootstrap/cage-teachpack.js b/servlet-htdocs/collects/bootstrap/cage-teachpack.js index 356bf30..be5f35c 100644 --- a/servlet-htdocs/collects/bootstrap/cage-teachpack.js +++ b/servlet-htdocs/collects/bootstrap/cage-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap/cage-teachpack"] = { 'name': "bootstrap/cage-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"offscreen?"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"draw-butterfly"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-y"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"world-x"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"butterfly"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("open-image-url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("key=?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("char?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",318,15,8,5])}],"body":{"$":"constant","value":400}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",338,16,8,6])}],"body":{"$":"constant","value":200}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",359,18,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",370,19,3,14]),types.vector(["bootstrap/cage-teachpack",385,19,18,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",369,19,2,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",370,19,3,14])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks/butterfly.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",454,21,8,9])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",465,21,19,11]),types.vector(["bootstrap/cage-teachpack",477,21,31,6]),types.vector(["bootstrap/cage-teachpack",484,21,38,26]),types.vector(["bootstrap/cage-teachpack",511,21,65,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",464,21,18,75])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",465,21,19,11])},"rands":[{"$":"toplevel","depth":3,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",477,21,31,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",485,21,39,1]),types.vector(["bootstrap/cage-teachpack",487,21,41,20]),types.vector(["bootstrap/cage-teachpack",508,21,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",484,21,38,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",485,21,39,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",488,21,42,11]),types.vector(["bootstrap/cage-teachpack",500,21,54,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",487,21,41,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",488,21,42,11])},"rands":[{"$":"toplevel","depth":6,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",500,21,54,6])}]}}},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",512,21,66,1]),types.vector(["bootstrap/cage-teachpack",514,21,68,21]),types.vector(["bootstrap/cage-teachpack",536,21,90,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",511,21,65,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",512,21,66,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",515,21,69,12]),types.vector(["bootstrap/cage-teachpack",528,21,82,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",514,21,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",515,21,69,12])},"rands":[{"$":"toplevel","depth":6,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",528,21,82,6])}]}}},{"$":"constant","value":2}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",632,25,15,5])},{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("x")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("y")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",710,29,9,4])}],"body":{"$":"lam","name":types.symbol("move"),"locs":[types.vector(["bootstrap/cage-teachpack",710,29,9,4]),types.vector(["bootstrap/cage-teachpack",715,29,14,1]),types.vector(["bootstrap/cage-teachpack",717,29,16,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",735,31,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",735,31,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",736,31,6,5]),types.vector(["bootstrap/cage-teachpack",742,31,12,3]),types.vector(["bootstrap/cage-teachpack",746,31,16,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",735,31,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",736,31,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",735,31,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",755,31,25,10]),types.vector(["bootstrap/cage-teachpack",766,31,36,18]),types.vector(["bootstrap/cage-teachpack",785,31,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",754,31,24,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",755,31,25,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",767,31,37,1]),types.vector(["bootstrap/cage-teachpack",769,31,39,11]),types.vector(["bootstrap/cage-teachpack",781,31,51,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",766,31,36,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",767,31,37,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",770,31,40,7]),types.vector(["bootstrap/cage-teachpack",778,31,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",769,31,39,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",770,31,40,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",786,31,56,7]),types.vector(["bootstrap/cage-teachpack",794,31,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",785,31,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",786,31,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",804,32,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",804,32,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",805,32,6,5]),types.vector(["bootstrap/cage-teachpack",811,32,12,3]),types.vector(["bootstrap/cage-teachpack",815,32,16,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",804,32,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",805,32,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",804,32,5,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",825,32,26,10]),types.vector(["bootstrap/cage-teachpack",836,32,37,18]),types.vector(["bootstrap/cage-teachpack",855,32,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",824,32,25,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",825,32,26,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",837,32,38,1]),types.vector(["bootstrap/cage-teachpack",839,32,40,11]),types.vector(["bootstrap/cage-teachpack",851,32,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",836,32,37,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",837,32,38,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",840,32,41,7]),types.vector(["bootstrap/cage-teachpack",848,32,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",839,32,40,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",840,32,41,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",856,32,57,7]),types.vector(["bootstrap/cage-teachpack",864,32,65,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",855,32,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",856,32,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",874,33,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",874,33,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",875,33,6,5]),types.vector(["bootstrap/cage-teachpack",881,33,12,3]),types.vector(["bootstrap/cage-teachpack",885,33,16,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",874,33,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",875,33,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",874,33,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",894,33,25,10]),types.vector(["bootstrap/cage-teachpack",905,33,36,11]),types.vector(["bootstrap/cage-teachpack",917,33,48,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",893,33,24,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",894,33,25,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",906,33,37,7]),types.vector(["bootstrap/cage-teachpack",914,33,45,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",905,33,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",906,33,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",918,33,49,1]),types.vector(["bootstrap/cage-teachpack",920,33,51,11]),types.vector(["bootstrap/cage-teachpack",932,33,63,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",917,33,48,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",918,33,49,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",921,33,52,7]),types.vector(["bootstrap/cage-teachpack",929,33,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",920,33,51,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",921,33,52,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",943,34,5,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",943,34,5,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",944,34,6,5]),types.vector(["bootstrap/cage-teachpack",950,34,12,3]),types.vector(["bootstrap/cage-teachpack",954,34,16,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",943,34,5,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",944,34,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",943,34,5,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",961,34,23,10]),types.vector(["bootstrap/cage-teachpack",972,34,34,11]),types.vector(["bootstrap/cage-teachpack",984,34,46,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",960,34,22,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",961,34,23,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",973,34,35,7]),types.vector(["bootstrap/cage-teachpack",981,34,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",972,34,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",973,34,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",985,34,47,1]),types.vector(["bootstrap/cage-teachpack",987,34,49,11]),types.vector(["bootstrap/cage-teachpack",999,34,61,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",984,34,46,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",985,34,47,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",988,34,50,7]),types.vector(["bootstrap/cage-teachpack",996,34,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",987,34,49,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",988,34,50,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1010,35,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1010,35,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1010,35,5,4])},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1010,35,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",724,30,2,294]),types.vector(["bootstrap/cage-teachpack",724,30,2,294])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},"rands":[{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])}]}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1188,41,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap/cage-teachpack",1188,41,9,10]),types.vector(["bootstrap/cage-teachpack",1199,41,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1211,42,9,127]),types.vector(["bootstrap/cage-teachpack",1227,42,25,110])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1211,42,9,127])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1211,42,9,127]),types.vector(["bootstrap/cage-teachpack",1212,42,10,14])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1348,44,9,409]),types.vector(["bootstrap/cage-teachpack",1359,44,20,397])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1348,44,9,409])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1348,44,9,409]),types.vector(["bootstrap/cage-teachpack",1349,44,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1764,51,5,14]),types.vector(["bootstrap/cage-teachpack",1779,51,20,1]),types.vector(["bootstrap/cage-teachpack",1781,51,22,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1763,51,4,59])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1782,51,23,9]),types.vector(["bootstrap/cage-teachpack",1792,51,33,1]),types.vector(["bootstrap/cage-teachpack",1794,51,35,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1781,51,22,40])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1795,51,36,11]),types.vector(["bootstrap/cage-teachpack",1807,51,48,5]),types.vector(["bootstrap/cage-teachpack",1813,51,54,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1794,51,35,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1795,51,36,11])},"rands":[{"$":"toplevel","depth":6,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1807,51,48,5])},{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1813,51,54,6])}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1360,44,21,6]),types.vector(["bootstrap/cage-teachpack",1368,44,29,1]),types.vector(["bootstrap/cage-teachpack",1370,44,31,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1400,45,23,11]),types.vector(["bootstrap/cage-teachpack",1412,45,35,224]),types.vector(["bootstrap/cage-teachpack",1672,48,35,2]),types.vector(["bootstrap/cage-teachpack",1711,49,35,1]),types.vector(["bootstrap/cage-teachpack",1749,50,35,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1399,45,22,356])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1400,45,23,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1413,45,36,4]),types.vector(["bootstrap/cage-teachpack",1418,45,41,166]),types.vector(["bootstrap/cage-teachpack",1626,47,41,2]),types.vector(["bootstrap/cage-teachpack",1629,47,44,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1412,45,35,224])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1413,45,36,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1419,45,42,13]),types.vector(["bootstrap/cage-teachpack",1433,45,56,16]),types.vector(["bootstrap/cage-teachpack",1450,45,73,28]),types.vector(["bootstrap/cage-teachpack",1535,46,56,19]),types.vector(["bootstrap/cage-teachpack",1555,46,76,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1418,45,41,166])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1419,45,42,13])},"rands":[{"$":"constant","value":"x-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1451,45,74,14]),types.vector(["bootstrap/cage-teachpack",1466,45,89,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1450,45,73,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1451,45,74,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1467,45,90,7]),types.vector(["bootstrap/cage-teachpack",1475,45,98,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1466,45,89,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1467,45,90,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":" y-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1556,46,77,14]),types.vector(["bootstrap/cage-teachpack",1571,46,92,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1555,46,76,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1556,46,77,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1572,46,93,7]),types.vector(["bootstrap/cage-teachpack",1580,46,101,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1571,46,92,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1572,46,93,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}},{"$":"constant","value":60},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1228,42,26,6]),types.vector(["bootstrap/cage-teachpack",1236,42,34,1]),types.vector(["bootstrap/cage-teachpack",1238,42,36,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1273,43,28,11]),types.vector(["bootstrap/cage-teachpack",1285,43,40,9]),types.vector(["bootstrap/cage-teachpack",1295,43,50,11]),types.vector(["bootstrap/cage-teachpack",1307,43,62,22]),types.vector(["bootstrap/cage-teachpack",1330,43,85,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1272,43,27,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1273,43,28,11])},"rands":[{"$":"toplevel","depth":4,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1285,43,40,9])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1296,43,51,7]),types.vector(["bootstrap/cage-teachpack",1304,43,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1295,43,50,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1296,43,51,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1308,43,63,1]),types.vector(["bootstrap/cage-teachpack",1310,43,65,6]),types.vector(["bootstrap/cage-teachpack",1317,43,72,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1307,43,62,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1308,43,63,1])},"rands":[{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1310,43,65,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1318,43,73,7]),types.vector(["bootstrap/cage-teachpack",1326,43,81,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1317,43,72,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1318,43,73,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1836,54,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap/cage-teachpack",1836,54,9,5]),types.vector(["bootstrap/cage-teachpack",1842,54,15,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1863,55,9,240]),types.vector(["bootstrap/cage-teachpack",1871,55,17,231])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1863,55,9,240])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1863,55,9,240]),types.vector(["bootstrap/cage-teachpack",1864,55,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2110,61,5,11]),types.vector(["bootstrap/cage-teachpack",2122,61,17,20]),types.vector(["bootstrap/cage-teachpack",2160,62,17,15]),types.vector(["bootstrap/cage-teachpack",2193,63,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2109,61,4,107])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2110,61,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2123,61,18,10]),types.vector(["bootstrap/cage-teachpack",2134,61,29,3]),types.vector(["bootstrap/cage-teachpack",2138,61,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2122,61,17,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2123,61,18,10])},"rands":[{"$":"constant","value":200},{"$":"constant","value":100}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2161,62,18,6]),types.vector(["bootstrap/cage-teachpack",2168,62,25,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2160,62,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2161,62,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2194,63,18,9]),types.vector(["bootstrap/cage-teachpack",2204,63,28,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2193,63,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2194,63,18,9])},"rands":[{"$":"toplevel","depth":4,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2204,63,28,10])}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1872,55,18,6]),types.vector(["bootstrap/cage-teachpack",1880,55,26,1]),types.vector(["bootstrap/cage-teachpack",1882,55,28,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1934,57,22,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1934,57,22,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1935,57,23,5]),types.vector(["bootstrap/cage-teachpack",1941,57,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1934,57,22,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1935,57,23,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1934,57,22,9])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1969,58,22,89])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1969,58,22,89])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1970,58,23,10]),types.vector(["bootstrap/cage-teachpack",1981,58,34,20]),types.vector(["bootstrap/cage-teachpack",2037,59,34,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1969,58,22,89])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1982,58,35,7]),types.vector(["bootstrap/cage-teachpack",1990,58,43,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1981,58,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1982,58,35,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1991,58,44,4]),types.vector(["bootstrap/cage-teachpack",1996,58,49,1]),types.vector(["bootstrap/cage-teachpack",1998,58,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1990,58,43,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1991,58,44,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2038,59,35,7]),types.vector(["bootstrap/cage-teachpack",2046,59,43,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2037,59,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2038,59,35,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2047,59,44,4]),types.vector(["bootstrap/cage-teachpack",2052,59,49,1]),types.vector(["bootstrap/cage-teachpack",2054,59,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2046,59,43,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2047,59,44,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1969,58,22,89])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2084,60,22,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2084,60,22,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2084,60,22,4])},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2084,60,22,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2090,60,28,4]),types.vector(["bootstrap/cage-teachpack",2095,60,33,1]),types.vector(["bootstrap/cage-teachpack",2097,60,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2089,60,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2090,60,28,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1905,56,19,196]),types.vector(["bootstrap/cage-teachpack",1905,56,19,196])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},"rands":[{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])}]}}}}}}}]}}}}}]}}, 'provides': ["start"]}; +window.COLLECTIONS["bootstrap/cage-teachpack"] = { 'name': "bootstrap/cage-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"offscreen?"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"draw-butterfly"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-y"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"world-x"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"butterfly"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("open-image-url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("key=?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("char?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",318,15,8,5])}],"body":{"$":"constant","value":400}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",338,16,8,6])}],"body":{"$":"constant","value":200}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",359,18,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",370,19,3,14]),types.vector(["bootstrap/cage-teachpack",385,19,18,57]),types.vector(["bootstrap/cage-teachpack",369,19,2,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",369,19,2,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",370,19,3,14])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks/butterfly.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",454,21,8,9])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",465,21,19,11]),types.vector(["bootstrap/cage-teachpack",477,21,31,6]),types.vector(["bootstrap/cage-teachpack",484,21,38,26]),types.vector(["bootstrap/cage-teachpack",511,21,65,27]),types.vector(["bootstrap/cage-teachpack",464,21,18,75])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",464,21,18,75])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",465,21,19,11])},"rands":[{"$":"toplevel","depth":3,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",477,21,31,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",485,21,39,1]),types.vector(["bootstrap/cage-teachpack",487,21,41,20]),types.vector(["bootstrap/cage-teachpack",508,21,62,1]),types.vector(["bootstrap/cage-teachpack",484,21,38,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",484,21,38,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",485,21,39,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",488,21,42,11]),types.vector(["bootstrap/cage-teachpack",500,21,54,6]),types.vector(["bootstrap/cage-teachpack",487,21,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",487,21,41,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",488,21,42,11])},"rands":[{"$":"toplevel","depth":6,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",500,21,54,6])}]}}},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",512,21,66,1]),types.vector(["bootstrap/cage-teachpack",514,21,68,21]),types.vector(["bootstrap/cage-teachpack",536,21,90,1]),types.vector(["bootstrap/cage-teachpack",511,21,65,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",511,21,65,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",512,21,66,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",515,21,69,12]),types.vector(["bootstrap/cage-teachpack",528,21,82,6]),types.vector(["bootstrap/cage-teachpack",514,21,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",514,21,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",515,21,69,12])},"rands":[{"$":"toplevel","depth":6,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",528,21,82,6])}]}}},{"$":"constant","value":2}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",632,25,15,5])},{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("x")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27]),types.vector(["bootstrap/cage-teachpack",617,25,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",617,25,0,27])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("y")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",710,29,9,4])}],"body":{"$":"lam","name":types.symbol("move"),"locs":[types.vector(["bootstrap/cage-teachpack",710,29,9,4]),types.vector(["bootstrap/cage-teachpack",715,29,14,1]),types.vector(["bootstrap/cage-teachpack",717,29,16,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18]),types.vector(["bootstrap/cage-teachpack",735,31,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",735,31,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",735,31,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",736,31,6,5]),types.vector(["bootstrap/cage-teachpack",742,31,12,3]),types.vector(["bootstrap/cage-teachpack",746,31,16,6]),types.vector(["bootstrap/cage-teachpack",735,31,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",735,31,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",736,31,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",735,31,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",755,31,25,10]),types.vector(["bootstrap/cage-teachpack",766,31,36,18]),types.vector(["bootstrap/cage-teachpack",785,31,55,11]),types.vector(["bootstrap/cage-teachpack",754,31,24,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",754,31,24,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",755,31,25,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",767,31,37,1]),types.vector(["bootstrap/cage-teachpack",769,31,39,11]),types.vector(["bootstrap/cage-teachpack",781,31,51,2]),types.vector(["bootstrap/cage-teachpack",766,31,36,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",766,31,36,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",767,31,37,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",770,31,40,7]),types.vector(["bootstrap/cage-teachpack",778,31,48,1]),types.vector(["bootstrap/cage-teachpack",769,31,39,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",769,31,39,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",770,31,40,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",786,31,56,7]),types.vector(["bootstrap/cage-teachpack",794,31,64,1]),types.vector(["bootstrap/cage-teachpack",785,31,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",785,31,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",786,31,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19]),types.vector(["bootstrap/cage-teachpack",804,32,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",804,32,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",804,32,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",805,32,6,5]),types.vector(["bootstrap/cage-teachpack",811,32,12,3]),types.vector(["bootstrap/cage-teachpack",815,32,16,7]),types.vector(["bootstrap/cage-teachpack",804,32,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",804,32,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",805,32,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",804,32,5,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",825,32,26,10]),types.vector(["bootstrap/cage-teachpack",836,32,37,18]),types.vector(["bootstrap/cage-teachpack",855,32,56,11]),types.vector(["bootstrap/cage-teachpack",824,32,25,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",824,32,25,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",825,32,26,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",837,32,38,1]),types.vector(["bootstrap/cage-teachpack",839,32,40,11]),types.vector(["bootstrap/cage-teachpack",851,32,52,2]),types.vector(["bootstrap/cage-teachpack",836,32,37,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",836,32,37,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",837,32,38,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",840,32,41,7]),types.vector(["bootstrap/cage-teachpack",848,32,49,1]),types.vector(["bootstrap/cage-teachpack",839,32,40,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",839,32,40,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",840,32,41,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",856,32,57,7]),types.vector(["bootstrap/cage-teachpack",864,32,65,1]),types.vector(["bootstrap/cage-teachpack",855,32,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",855,32,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",856,32,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18]),types.vector(["bootstrap/cage-teachpack",874,33,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",874,33,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",874,33,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",875,33,6,5]),types.vector(["bootstrap/cage-teachpack",881,33,12,3]),types.vector(["bootstrap/cage-teachpack",885,33,16,6]),types.vector(["bootstrap/cage-teachpack",874,33,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",874,33,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",875,33,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",874,33,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",894,33,25,10]),types.vector(["bootstrap/cage-teachpack",905,33,36,11]),types.vector(["bootstrap/cage-teachpack",917,33,48,18]),types.vector(["bootstrap/cage-teachpack",893,33,24,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",893,33,24,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",894,33,25,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",906,33,37,7]),types.vector(["bootstrap/cage-teachpack",914,33,45,1]),types.vector(["bootstrap/cage-teachpack",905,33,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",905,33,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",906,33,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",918,33,49,1]),types.vector(["bootstrap/cage-teachpack",920,33,51,11]),types.vector(["bootstrap/cage-teachpack",932,33,63,2]),types.vector(["bootstrap/cage-teachpack",917,33,48,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",917,33,48,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",918,33,49,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",921,33,52,7]),types.vector(["bootstrap/cage-teachpack",929,33,60,1]),types.vector(["bootstrap/cage-teachpack",920,33,51,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",920,33,51,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",921,33,52,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16]),types.vector(["bootstrap/cage-teachpack",943,34,5,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",943,34,5,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",943,34,5,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",944,34,6,5]),types.vector(["bootstrap/cage-teachpack",950,34,12,3]),types.vector(["bootstrap/cage-teachpack",954,34,16,4]),types.vector(["bootstrap/cage-teachpack",943,34,5,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",943,34,5,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",944,34,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",943,34,5,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",961,34,23,10]),types.vector(["bootstrap/cage-teachpack",972,34,34,11]),types.vector(["bootstrap/cage-teachpack",984,34,46,18]),types.vector(["bootstrap/cage-teachpack",960,34,22,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",960,34,22,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",961,34,23,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",973,34,35,7]),types.vector(["bootstrap/cage-teachpack",981,34,43,1]),types.vector(["bootstrap/cage-teachpack",972,34,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",972,34,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",973,34,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",985,34,47,1]),types.vector(["bootstrap/cage-teachpack",987,34,49,11]),types.vector(["bootstrap/cage-teachpack",999,34,61,2]),types.vector(["bootstrap/cage-teachpack",984,34,46,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",984,34,46,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",985,34,47,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",988,34,50,7]),types.vector(["bootstrap/cage-teachpack",996,34,58,1]),types.vector(["bootstrap/cage-teachpack",987,34,49,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",987,34,49,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",988,34,50,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4]),types.vector(["bootstrap/cage-teachpack",1010,35,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1010,35,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1010,35,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1010,35,5,4])},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1010,35,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",724,30,2,294]),types.vector(["bootstrap/cage-teachpack",724,30,2,294]),types.vector(["bootstrap/cage-teachpack",724,30,2,294])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",724,30,2,294])},"rands":[{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",724,30,2,294])}]}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1188,41,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap/cage-teachpack",1188,41,9,10]),types.vector(["bootstrap/cage-teachpack",1199,41,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1211,42,9,127]),types.vector(["bootstrap/cage-teachpack",1227,42,25,110]),types.vector(["bootstrap/cage-teachpack",1211,42,9,127])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1211,42,9,127])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1211,42,9,127]),types.vector(["bootstrap/cage-teachpack",1212,42,10,14])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1348,44,9,409]),types.vector(["bootstrap/cage-teachpack",1359,44,20,397]),types.vector(["bootstrap/cage-teachpack",1348,44,9,409])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1348,44,9,409])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1348,44,9,409]),types.vector(["bootstrap/cage-teachpack",1349,44,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1764,51,5,14]),types.vector(["bootstrap/cage-teachpack",1779,51,20,1]),types.vector(["bootstrap/cage-teachpack",1781,51,22,40]),types.vector(["bootstrap/cage-teachpack",1763,51,4,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1763,51,4,59])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1782,51,23,9]),types.vector(["bootstrap/cage-teachpack",1792,51,33,1]),types.vector(["bootstrap/cage-teachpack",1794,51,35,26]),types.vector(["bootstrap/cage-teachpack",1781,51,22,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1781,51,22,40])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1795,51,36,11]),types.vector(["bootstrap/cage-teachpack",1807,51,48,5]),types.vector(["bootstrap/cage-teachpack",1813,51,54,6]),types.vector(["bootstrap/cage-teachpack",1794,51,35,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1794,51,35,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1795,51,36,11])},"rands":[{"$":"toplevel","depth":6,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1807,51,48,5])},{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1813,51,54,6])}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1360,44,21,6]),types.vector(["bootstrap/cage-teachpack",1368,44,29,1]),types.vector(["bootstrap/cage-teachpack",1370,44,31,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1400,45,23,11]),types.vector(["bootstrap/cage-teachpack",1412,45,35,224]),types.vector(["bootstrap/cage-teachpack",1672,48,35,2]),types.vector(["bootstrap/cage-teachpack",1711,49,35,1]),types.vector(["bootstrap/cage-teachpack",1749,50,35,5]),types.vector(["bootstrap/cage-teachpack",1399,45,22,356])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1399,45,22,356])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1400,45,23,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1413,45,36,4]),types.vector(["bootstrap/cage-teachpack",1418,45,41,166]),types.vector(["bootstrap/cage-teachpack",1626,47,41,2]),types.vector(["bootstrap/cage-teachpack",1629,47,44,6]),types.vector(["bootstrap/cage-teachpack",1412,45,35,224])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1412,45,35,224])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1413,45,36,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1419,45,42,13]),types.vector(["bootstrap/cage-teachpack",1433,45,56,16]),types.vector(["bootstrap/cage-teachpack",1450,45,73,28]),types.vector(["bootstrap/cage-teachpack",1535,46,56,19]),types.vector(["bootstrap/cage-teachpack",1555,46,76,28]),types.vector(["bootstrap/cage-teachpack",1418,45,41,166])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1418,45,41,166])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1419,45,42,13])},"rands":[{"$":"constant","value":"x-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1451,45,74,14]),types.vector(["bootstrap/cage-teachpack",1466,45,89,11]),types.vector(["bootstrap/cage-teachpack",1450,45,73,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1450,45,73,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1451,45,74,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1467,45,90,7]),types.vector(["bootstrap/cage-teachpack",1475,45,98,1]),types.vector(["bootstrap/cage-teachpack",1466,45,89,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1466,45,89,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1467,45,90,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":" y-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1556,46,77,14]),types.vector(["bootstrap/cage-teachpack",1571,46,92,11]),types.vector(["bootstrap/cage-teachpack",1555,46,76,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1555,46,76,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1556,46,77,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1572,46,93,7]),types.vector(["bootstrap/cage-teachpack",1580,46,101,1]),types.vector(["bootstrap/cage-teachpack",1571,46,92,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1571,46,92,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1572,46,93,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}},{"$":"constant","value":60},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1228,42,26,6]),types.vector(["bootstrap/cage-teachpack",1236,42,34,1]),types.vector(["bootstrap/cage-teachpack",1238,42,36,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1273,43,28,11]),types.vector(["bootstrap/cage-teachpack",1285,43,40,9]),types.vector(["bootstrap/cage-teachpack",1295,43,50,11]),types.vector(["bootstrap/cage-teachpack",1307,43,62,22]),types.vector(["bootstrap/cage-teachpack",1330,43,85,5]),types.vector(["bootstrap/cage-teachpack",1272,43,27,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1272,43,27,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1273,43,28,11])},"rands":[{"$":"toplevel","depth":4,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1285,43,40,9])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1296,43,51,7]),types.vector(["bootstrap/cage-teachpack",1304,43,59,1]),types.vector(["bootstrap/cage-teachpack",1295,43,50,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1295,43,50,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1296,43,51,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1308,43,63,1]),types.vector(["bootstrap/cage-teachpack",1310,43,65,6]),types.vector(["bootstrap/cage-teachpack",1317,43,72,11]),types.vector(["bootstrap/cage-teachpack",1307,43,62,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1307,43,62,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1308,43,63,1])},"rands":[{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1310,43,65,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1318,43,73,7]),types.vector(["bootstrap/cage-teachpack",1326,43,81,1]),types.vector(["bootstrap/cage-teachpack",1317,43,72,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1317,43,72,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1318,43,73,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1836,54,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap/cage-teachpack",1836,54,9,5]),types.vector(["bootstrap/cage-teachpack",1842,54,15,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1863,55,9,240]),types.vector(["bootstrap/cage-teachpack",1871,55,17,231]),types.vector(["bootstrap/cage-teachpack",1863,55,9,240])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1863,55,9,240])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1863,55,9,240]),types.vector(["bootstrap/cage-teachpack",1864,55,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2110,61,5,11]),types.vector(["bootstrap/cage-teachpack",2122,61,17,20]),types.vector(["bootstrap/cage-teachpack",2160,62,17,15]),types.vector(["bootstrap/cage-teachpack",2193,63,17,22]),types.vector(["bootstrap/cage-teachpack",2109,61,4,107])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2109,61,4,107])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2110,61,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2123,61,18,10]),types.vector(["bootstrap/cage-teachpack",2134,61,29,3]),types.vector(["bootstrap/cage-teachpack",2138,61,33,3]),types.vector(["bootstrap/cage-teachpack",2122,61,17,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2122,61,17,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2123,61,18,10])},"rands":[{"$":"constant","value":200},{"$":"constant","value":100}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2161,62,18,6]),types.vector(["bootstrap/cage-teachpack",2168,62,25,6]),types.vector(["bootstrap/cage-teachpack",2160,62,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2160,62,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2161,62,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2194,63,18,9]),types.vector(["bootstrap/cage-teachpack",2204,63,28,10]),types.vector(["bootstrap/cage-teachpack",2193,63,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2193,63,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2194,63,18,9])},"rands":[{"$":"toplevel","depth":4,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2204,63,28,10])}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap/cage-teachpack",1872,55,18,6]),types.vector(["bootstrap/cage-teachpack",1880,55,26,1]),types.vector(["bootstrap/cage-teachpack",1882,55,28,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1934,57,22,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1934,57,22,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1935,57,23,5]),types.vector(["bootstrap/cage-teachpack",1941,57,29,1]),types.vector(["bootstrap/cage-teachpack",1934,57,22,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1934,57,22,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1935,57,23,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1934,57,22,9])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1969,58,22,89])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1969,58,22,89])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1970,58,23,10]),types.vector(["bootstrap/cage-teachpack",1981,58,34,20]),types.vector(["bootstrap/cage-teachpack",2037,59,34,20]),types.vector(["bootstrap/cage-teachpack",1969,58,22,89])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1969,58,22,89])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1982,58,35,7]),types.vector(["bootstrap/cage-teachpack",1990,58,43,10]),types.vector(["bootstrap/cage-teachpack",1981,58,34,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1981,58,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1982,58,35,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1991,58,44,4]),types.vector(["bootstrap/cage-teachpack",1996,58,49,1]),types.vector(["bootstrap/cage-teachpack",1998,58,51,1]),types.vector(["bootstrap/cage-teachpack",1990,58,43,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1990,58,43,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1991,58,44,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2038,59,35,7]),types.vector(["bootstrap/cage-teachpack",2046,59,43,10]),types.vector(["bootstrap/cage-teachpack",2037,59,34,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2037,59,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2038,59,35,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2047,59,44,4]),types.vector(["bootstrap/cage-teachpack",2052,59,49,1]),types.vector(["bootstrap/cage-teachpack",2054,59,51,1]),types.vector(["bootstrap/cage-teachpack",2046,59,43,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2046,59,43,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2047,59,44,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1969,58,22,89])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4]),types.vector(["bootstrap/cage-teachpack",2084,60,22,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2084,60,22,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2084,60,22,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2084,60,22,4])},{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2084,60,22,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",2090,60,28,4]),types.vector(["bootstrap/cage-teachpack",2095,60,33,1]),types.vector(["bootstrap/cage-teachpack",2097,60,35,1]),types.vector(["bootstrap/cage-teachpack",2089,60,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",2089,60,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",2090,60,28,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/cage-teachpack",1905,56,19,196]),types.vector(["bootstrap/cage-teachpack",1905,56,19,196]),types.vector(["bootstrap/cage-teachpack",1905,56,19,196])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])},"rands":[{"$":"constant","value":types.vector(["bootstrap/cage-teachpack",1905,56,19,196])}]}}}}}}}]}}}}}]}}, 'provides': ["start"]}; diff --git a/servlet-htdocs/collects/bootstrap/function-teachpack.js b/servlet-htdocs/collects/bootstrap/function-teachpack.js index 5040a47..437e226 100644 --- a/servlet-htdocs/collects/bootstrap/function-teachpack.js +++ b/servlet-htdocs/collects/bootstrap/function-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap/function-teachpack"] = { 'name': "bootstrap/function-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"world-rocket-height"},{"$":"global-bucket","value":"tock"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-current-height"},{"$":"global-bucket","value":"text-add"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"IMAGE0"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"rocket-add"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"ROCKET"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("open-image-url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",385,15,8,5])}],"body":{"$":"constant","value":200}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",405,16,8,6])}],"body":{"$":"constant","value":600}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",425,17,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",433,17,16,11]),types.vector(["bootstrap/function-teachpack",445,17,28,5]),types.vector(["bootstrap/function-teachpack",451,17,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",432,17,15,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",433,17,16,11])},"rands":[{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",445,17,28,5])},{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",451,17,34,6])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",469,19,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",479,20,3,14]),types.vector(["bootstrap/function-teachpack",494,20,18,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",478,20,2,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",479,20,3,14])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks/rocket.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",560,22,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",568,22,16,11]),types.vector(["bootstrap/function-teachpack",580,22,28,6]),types.vector(["bootstrap/function-teachpack",587,22,35,26]),types.vector(["bootstrap/function-teachpack",614,22,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",567,22,15,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",568,22,16,11])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",580,22,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",588,22,36,1]),types.vector(["bootstrap/function-teachpack",590,22,38,20]),types.vector(["bootstrap/function-teachpack",611,22,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",587,22,35,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",588,22,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",591,22,39,11]),types.vector(["bootstrap/function-teachpack",603,22,51,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",590,22,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",591,22,39,11])},"rands":[{"$":"toplevel","depth":6,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",603,22,51,6])}]}}},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",615,22,63,12]),types.vector(["bootstrap/function-teachpack",628,22,76,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",614,22,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",615,22,63,12])},"rands":[{"$":"toplevel","depth":4,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",628,22,76,6])}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",654,24,15,5])},{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"toplevel","depth":0,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"toplevel","depth":0,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"rands":[{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("current-height")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"rands":[{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("rocket-height")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",862,30,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap/function-teachpack",862,30,9,10]),types.vector(["bootstrap/function-teachpack",873,30,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",879,31,3,8]),types.vector(["bootstrap/function-teachpack",888,31,12,50]),types.vector(["bootstrap/function-teachpack",939,31,63,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",878,31,2,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",879,31,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",889,31,13,23]),types.vector(["bootstrap/function-teachpack",913,31,37,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",888,31,12,50])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",890,31,14,19]),types.vector(["bootstrap/function-teachpack",910,31,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",889,31,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",890,31,14,19])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",914,31,38,20]),types.vector(["bootstrap/function-teachpack",935,31,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",913,31,37,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",914,31,38,20])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",940,31,64,10]),types.vector(["bootstrap/function-teachpack",951,31,75,1]),types.vector(["bootstrap/function-teachpack",953,31,77,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",939,31,63,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",940,31,64,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",953,31,77,6])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1054,35,9,8])}],"body":{"$":"lam","name":types.symbol("text-add"),"locs":[types.vector(["bootstrap/function-teachpack",1054,35,9,8]),types.vector(["bootstrap/function-teachpack",1063,35,18,6]),types.vector(["bootstrap/function-teachpack",1070,35,25,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1081,36,3,11]),types.vector(["bootstrap/function-teachpack",1093,36,15,67]),types.vector(["bootstrap/function-teachpack",1176,37,15,2]),types.vector(["bootstrap/function-teachpack",1195,38,15,1]),types.vector(["bootstrap/function-teachpack",1213,39,15,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1080,36,2,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1081,36,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1094,36,16,4]),types.vector(["bootstrap/function-teachpack",1099,36,21,50]),types.vector(["bootstrap/function-teachpack",1150,36,72,2]),types.vector(["bootstrap/function-teachpack",1153,36,75,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1093,36,15,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1094,36,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1100,36,22,13]),types.vector(["bootstrap/function-teachpack",1114,36,36,10]),types.vector(["bootstrap/function-teachpack",1125,36,47,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1099,36,21,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1100,36,22,13])},"rands":[{"$":"constant","value":"Height: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1126,36,48,14]),types.vector(["bootstrap/function-teachpack",1141,36,63,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1125,36,47,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1126,36,48,14])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}},{"$":"constant","value":60},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1350,43,9,10])}],"body":{"$":"lam","name":types.symbol("rocket-add"),"locs":[types.vector(["bootstrap/function-teachpack",1350,43,9,10]),types.vector(["bootstrap/function-teachpack",1361,43,20,1]),types.vector(["bootstrap/function-teachpack",1363,43,22,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1384,45,5,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1384,45,5,88])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1373,44,2,247])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1385,45,6,2]),types.vector(["bootstrap/function-teachpack",1388,45,9,21]),types.vector(["bootstrap/function-teachpack",1410,45,31,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1384,45,5,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1385,45,6,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1389,45,10,12]),types.vector(["bootstrap/function-teachpack",1402,45,23,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1388,45,9,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1389,45,10,12])},"rands":[{"$":"toplevel","depth":7,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1402,45,23,6])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1411,45,32,1]),types.vector(["bootstrap/function-teachpack",1413,45,34,6]),types.vector(["bootstrap/function-teachpack",1420,45,41,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1410,45,31,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1411,45,32,1])},"rands":[{"$":"toplevel","depth":8,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1413,45,34,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1421,45,42,23]),types.vector(["bootstrap/function-teachpack",1445,45,66,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1420,45,41,50])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1422,45,43,19]),types.vector(["bootstrap/function-teachpack",1442,45,63,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1421,45,42,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1422,45,43,19])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1446,45,67,20]),types.vector(["bootstrap/function-teachpack",1467,45,88,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1445,45,66,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1446,45,67,20])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1384,45,5,88])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1479,46,6,11]),types.vector(["bootstrap/function-teachpack",1491,46,18,6]),types.vector(["bootstrap/function-teachpack",1498,46,25,3]),types.vector(["bootstrap/function-teachpack",1502,46,29,3]),types.vector(["bootstrap/function-teachpack",1506,46,33,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1478,46,5,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1479,46,6,11])},"rands":[{"$":"toplevel","depth":4,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1491,46,18,6])},{"$":"constant","value":100},{"$":"constant","value":200},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1520,47,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1520,47,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1373,44,2,247])},{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1520,47,5,4])},{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1520,47,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1526,47,11,11]),types.vector(["bootstrap/function-teachpack",1538,47,23,6]),types.vector(["bootstrap/function-teachpack",1545,47,30,3]),types.vector(["bootstrap/function-teachpack",1549,47,34,61]),types.vector(["bootstrap/function-teachpack",1611,47,96,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1525,47,10,93])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1526,47,11,11])},"rands":[{"$":"toplevel","depth":4,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1538,47,23,6])},{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1550,47,35,1]),types.vector(["bootstrap/function-teachpack",1552,47,37,6]),types.vector(["bootstrap/function-teachpack",1559,47,44,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1549,47,34,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1550,47,35,1])},"rands":[{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1552,47,37,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1560,47,45,23]),types.vector(["bootstrap/function-teachpack",1584,47,69,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1559,47,44,50])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1561,47,46,19]),types.vector(["bootstrap/function-teachpack",1581,47,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1560,47,45,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1561,47,46,19])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1585,47,70,20]),types.vector(["bootstrap/function-teachpack",1606,47,91,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1584,47,69,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1585,47,70,20])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1373,44,2,247]),types.vector(["bootstrap/function-teachpack",1373,44,2,247])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1373,44,2,247])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1373,44,2,247])},"rands":[{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1373,44,2,247])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1731,52,9,4])}],"body":{"$":"lam","name":types.symbol("tock"),"locs":[types.vector(["bootstrap/function-teachpack",1731,52,9,4]),types.vector(["bootstrap/function-teachpack",1736,52,14,1]),types.vector(["bootstrap/function-teachpack",1738,52,16,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1746,53,3,10]),types.vector(["bootstrap/function-teachpack",1757,53,14,30]),types.vector(["bootstrap/function-teachpack",1802,54,14,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1745,53,2,81])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1746,53,3,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1758,53,15,1]),types.vector(["bootstrap/function-teachpack",1760,53,17,1]),types.vector(["bootstrap/function-teachpack",1762,53,19,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1757,53,14,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1758,53,15,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1763,53,20,20]),types.vector(["bootstrap/function-teachpack",1784,53,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1762,53,19,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1763,53,20,20])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1803,54,15,19]),types.vector(["bootstrap/function-teachpack",1823,54,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1802,54,14,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1803,54,15,19])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1839,57,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap/function-teachpack",1839,57,9,5]),types.vector(["bootstrap/function-teachpack",1845,57,15,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1863,58,3,11]),types.vector(["bootstrap/function-teachpack",1875,58,15,28]),types.vector(["bootstrap/function-teachpack",1919,59,15,13]),types.vector(["bootstrap/function-teachpack",1948,60,15,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1862,58,2,109])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1863,58,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1876,58,16,10]),types.vector(["bootstrap/function-teachpack",1887,58,27,1]),types.vector(["bootstrap/function-teachpack",1889,58,29,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1875,58,15,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1876,58,16,10])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1920,59,16,6]),types.vector(["bootstrap/function-teachpack",1927,59,23,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1919,59,15,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1920,59,16,6])},"rands":[{"$":"toplevel","depth":4,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1927,59,23,4])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1949,60,16,9]),types.vector(["bootstrap/function-teachpack",1959,60,26,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1948,60,15,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1949,60,16,9])},"rands":[{"$":"toplevel","depth":4,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1959,60,26,10])}]}}}]}}}}}]}}, 'provides': ["start"]}; +window.COLLECTIONS["bootstrap/function-teachpack"] = { 'name': "bootstrap/function-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"world-rocket-height"},{"$":"global-bucket","value":"tock"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-current-height"},{"$":"global-bucket","value":"text-add"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"IMAGE0"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"rocket-add"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"ROCKET"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("open-image-url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",385,15,8,5])}],"body":{"$":"constant","value":200}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",405,16,8,6])}],"body":{"$":"constant","value":600}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",425,17,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",433,17,16,11]),types.vector(["bootstrap/function-teachpack",445,17,28,5]),types.vector(["bootstrap/function-teachpack",451,17,34,6]),types.vector(["bootstrap/function-teachpack",432,17,15,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",432,17,15,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",433,17,16,11])},"rands":[{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",445,17,28,5])},{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",451,17,34,6])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",469,19,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",479,20,3,14]),types.vector(["bootstrap/function-teachpack",494,20,18,54]),types.vector(["bootstrap/function-teachpack",478,20,2,71])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",478,20,2,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",479,20,3,14])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks/rocket.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",560,22,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",568,22,16,11]),types.vector(["bootstrap/function-teachpack",580,22,28,6]),types.vector(["bootstrap/function-teachpack",587,22,35,26]),types.vector(["bootstrap/function-teachpack",614,22,62,21]),types.vector(["bootstrap/function-teachpack",567,22,15,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",567,22,15,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",568,22,16,11])},"rands":[{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",580,22,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",588,22,36,1]),types.vector(["bootstrap/function-teachpack",590,22,38,20]),types.vector(["bootstrap/function-teachpack",611,22,59,1]),types.vector(["bootstrap/function-teachpack",587,22,35,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",587,22,35,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",588,22,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",591,22,39,11]),types.vector(["bootstrap/function-teachpack",603,22,51,6]),types.vector(["bootstrap/function-teachpack",590,22,38,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",590,22,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",591,22,39,11])},"rands":[{"$":"toplevel","depth":6,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",603,22,51,6])}]}}},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",615,22,63,12]),types.vector(["bootstrap/function-teachpack",628,22,76,6]),types.vector(["bootstrap/function-teachpack",614,22,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",614,22,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",615,22,63,12])},"rands":[{"$":"toplevel","depth":4,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",628,22,76,6])}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",654,24,15,5])},{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"toplevel","depth":0,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"toplevel","depth":0,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"rands":[{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("current-height")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52]),types.vector(["bootstrap/function-teachpack",639,24,0,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},"rands":[{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",639,24,0,52])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("rocket-height")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",862,30,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap/function-teachpack",862,30,9,10]),types.vector(["bootstrap/function-teachpack",873,30,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",879,31,3,8]),types.vector(["bootstrap/function-teachpack",888,31,12,50]),types.vector(["bootstrap/function-teachpack",939,31,63,21]),types.vector(["bootstrap/function-teachpack",878,31,2,83])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",878,31,2,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",879,31,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",889,31,13,23]),types.vector(["bootstrap/function-teachpack",913,31,37,24]),types.vector(["bootstrap/function-teachpack",888,31,12,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",888,31,12,50])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",890,31,14,19]),types.vector(["bootstrap/function-teachpack",910,31,34,1]),types.vector(["bootstrap/function-teachpack",889,31,13,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",889,31,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",890,31,14,19])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",914,31,38,20]),types.vector(["bootstrap/function-teachpack",935,31,59,1]),types.vector(["bootstrap/function-teachpack",913,31,37,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",913,31,37,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",914,31,38,20])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",940,31,64,10]),types.vector(["bootstrap/function-teachpack",951,31,75,1]),types.vector(["bootstrap/function-teachpack",953,31,77,6]),types.vector(["bootstrap/function-teachpack",939,31,63,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",939,31,63,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",940,31,64,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",953,31,77,6])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1054,35,9,8])}],"body":{"$":"lam","name":types.symbol("text-add"),"locs":[types.vector(["bootstrap/function-teachpack",1054,35,9,8]),types.vector(["bootstrap/function-teachpack",1063,35,18,6]),types.vector(["bootstrap/function-teachpack",1070,35,25,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1081,36,3,11]),types.vector(["bootstrap/function-teachpack",1093,36,15,67]),types.vector(["bootstrap/function-teachpack",1176,37,15,2]),types.vector(["bootstrap/function-teachpack",1195,38,15,1]),types.vector(["bootstrap/function-teachpack",1213,39,15,6]),types.vector(["bootstrap/function-teachpack",1080,36,2,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1080,36,2,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1081,36,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1094,36,16,4]),types.vector(["bootstrap/function-teachpack",1099,36,21,50]),types.vector(["bootstrap/function-teachpack",1150,36,72,2]),types.vector(["bootstrap/function-teachpack",1153,36,75,6]),types.vector(["bootstrap/function-teachpack",1093,36,15,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1093,36,15,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1094,36,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1100,36,22,13]),types.vector(["bootstrap/function-teachpack",1114,36,36,10]),types.vector(["bootstrap/function-teachpack",1125,36,47,23]),types.vector(["bootstrap/function-teachpack",1099,36,21,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1099,36,21,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1100,36,22,13])},"rands":[{"$":"constant","value":"Height: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1126,36,48,14]),types.vector(["bootstrap/function-teachpack",1141,36,63,6]),types.vector(["bootstrap/function-teachpack",1125,36,47,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1125,36,47,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1126,36,48,14])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}},{"$":"constant","value":60},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1350,43,9,10])}],"body":{"$":"lam","name":types.symbol("rocket-add"),"locs":[types.vector(["bootstrap/function-teachpack",1350,43,9,10]),types.vector(["bootstrap/function-teachpack",1361,43,20,1]),types.vector(["bootstrap/function-teachpack",1363,43,22,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88]),types.vector(["bootstrap/function-teachpack",1384,45,5,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1384,45,5,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1384,45,5,88])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1373,44,2,247])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1385,45,6,2]),types.vector(["bootstrap/function-teachpack",1388,45,9,21]),types.vector(["bootstrap/function-teachpack",1410,45,31,61]),types.vector(["bootstrap/function-teachpack",1384,45,5,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1384,45,5,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1385,45,6,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1389,45,10,12]),types.vector(["bootstrap/function-teachpack",1402,45,23,6]),types.vector(["bootstrap/function-teachpack",1388,45,9,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1388,45,9,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1389,45,10,12])},"rands":[{"$":"toplevel","depth":7,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1402,45,23,6])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1411,45,32,1]),types.vector(["bootstrap/function-teachpack",1413,45,34,6]),types.vector(["bootstrap/function-teachpack",1420,45,41,50]),types.vector(["bootstrap/function-teachpack",1410,45,31,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1410,45,31,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1411,45,32,1])},"rands":[{"$":"toplevel","depth":8,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1413,45,34,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1421,45,42,23]),types.vector(["bootstrap/function-teachpack",1445,45,66,24]),types.vector(["bootstrap/function-teachpack",1420,45,41,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1420,45,41,50])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1422,45,43,19]),types.vector(["bootstrap/function-teachpack",1442,45,63,1]),types.vector(["bootstrap/function-teachpack",1421,45,42,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1421,45,42,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1422,45,43,19])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1446,45,67,20]),types.vector(["bootstrap/function-teachpack",1467,45,88,1]),types.vector(["bootstrap/function-teachpack",1445,45,66,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1445,45,66,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1446,45,67,20])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1384,45,5,88])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1479,46,6,11]),types.vector(["bootstrap/function-teachpack",1491,46,18,6]),types.vector(["bootstrap/function-teachpack",1498,46,25,3]),types.vector(["bootstrap/function-teachpack",1502,46,29,3]),types.vector(["bootstrap/function-teachpack",1506,46,33,6]),types.vector(["bootstrap/function-teachpack",1478,46,5,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1478,46,5,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1479,46,6,11])},"rands":[{"$":"toplevel","depth":4,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1491,46,18,6])},{"$":"constant","value":100},{"$":"constant","value":200},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4]),types.vector(["bootstrap/function-teachpack",1520,47,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1520,47,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1520,47,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1373,44,2,247])},{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1520,47,5,4])},{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1520,47,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1526,47,11,11]),types.vector(["bootstrap/function-teachpack",1538,47,23,6]),types.vector(["bootstrap/function-teachpack",1545,47,30,3]),types.vector(["bootstrap/function-teachpack",1549,47,34,61]),types.vector(["bootstrap/function-teachpack",1611,47,96,6]),types.vector(["bootstrap/function-teachpack",1525,47,10,93])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1525,47,10,93])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1526,47,11,11])},"rands":[{"$":"toplevel","depth":4,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1538,47,23,6])},{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1550,47,35,1]),types.vector(["bootstrap/function-teachpack",1552,47,37,6]),types.vector(["bootstrap/function-teachpack",1559,47,44,50]),types.vector(["bootstrap/function-teachpack",1549,47,34,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1549,47,34,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1550,47,35,1])},"rands":[{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1552,47,37,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1560,47,45,23]),types.vector(["bootstrap/function-teachpack",1584,47,69,24]),types.vector(["bootstrap/function-teachpack",1559,47,44,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1559,47,44,50])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1561,47,46,19]),types.vector(["bootstrap/function-teachpack",1581,47,66,1]),types.vector(["bootstrap/function-teachpack",1560,47,45,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1560,47,45,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1561,47,46,19])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1585,47,70,20]),types.vector(["bootstrap/function-teachpack",1606,47,91,1]),types.vector(["bootstrap/function-teachpack",1584,47,69,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1584,47,69,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1585,47,70,20])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1373,44,2,247]),types.vector(["bootstrap/function-teachpack",1373,44,2,247]),types.vector(["bootstrap/function-teachpack",1373,44,2,247])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1373,44,2,247])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1373,44,2,247])},"rands":[{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1373,44,2,247])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1731,52,9,4])}],"body":{"$":"lam","name":types.symbol("tock"),"locs":[types.vector(["bootstrap/function-teachpack",1731,52,9,4]),types.vector(["bootstrap/function-teachpack",1736,52,14,1]),types.vector(["bootstrap/function-teachpack",1738,52,16,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1746,53,3,10]),types.vector(["bootstrap/function-teachpack",1757,53,14,30]),types.vector(["bootstrap/function-teachpack",1802,54,14,23]),types.vector(["bootstrap/function-teachpack",1745,53,2,81])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1745,53,2,81])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1746,53,3,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1758,53,15,1]),types.vector(["bootstrap/function-teachpack",1760,53,17,1]),types.vector(["bootstrap/function-teachpack",1762,53,19,24]),types.vector(["bootstrap/function-teachpack",1757,53,14,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1757,53,14,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1758,53,15,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1763,53,20,20]),types.vector(["bootstrap/function-teachpack",1784,53,41,1]),types.vector(["bootstrap/function-teachpack",1762,53,19,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1762,53,19,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1763,53,20,20])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1803,54,15,19]),types.vector(["bootstrap/function-teachpack",1823,54,35,1]),types.vector(["bootstrap/function-teachpack",1802,54,14,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1802,54,14,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1803,54,15,19])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1839,57,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap/function-teachpack",1839,57,9,5]),types.vector(["bootstrap/function-teachpack",1845,57,15,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1863,58,3,11]),types.vector(["bootstrap/function-teachpack",1875,58,15,28]),types.vector(["bootstrap/function-teachpack",1919,59,15,13]),types.vector(["bootstrap/function-teachpack",1948,60,15,22]),types.vector(["bootstrap/function-teachpack",1862,58,2,109])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1862,58,2,109])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1863,58,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1876,58,16,10]),types.vector(["bootstrap/function-teachpack",1887,58,27,1]),types.vector(["bootstrap/function-teachpack",1889,58,29,13]),types.vector(["bootstrap/function-teachpack",1875,58,15,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1875,58,15,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1876,58,16,10])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1920,59,16,6]),types.vector(["bootstrap/function-teachpack",1927,59,23,4]),types.vector(["bootstrap/function-teachpack",1919,59,15,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1919,59,15,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1920,59,16,6])},"rands":[{"$":"toplevel","depth":4,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1927,59,23,4])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap/function-teachpack",1949,60,16,9]),types.vector(["bootstrap/function-teachpack",1959,60,26,10]),types.vector(["bootstrap/function-teachpack",1948,60,15,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap/function-teachpack",1948,60,15,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1949,60,16,9])},"rands":[{"$":"toplevel","depth":4,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap/function-teachpack",1959,60,26,10])}]}}}]}}}}}]}}, 'provides': ["start"]}; diff --git a/servlet-htdocs/collects/bootstrap2011/bootstrap-common.js b/servlet-htdocs/collects/bootstrap2011/bootstrap-common.js index 65c44dc..43fc5e8 100644 --- a/servlet-htdocs/collects/bootstrap2011/bootstrap-common.js +++ b/servlet-htdocs/collects/bootstrap2011/bootstrap-common.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2011/bootstrap-common"] = { 'name': "bootstrap2011/bootstrap-common", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"cosine"},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",373,14,11,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2011/bootstrap-common",373,14,11,4]),types.vector(["bootstrap2011/bootstrap-common",378,14,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",401,16,8,10]),types.vector(["bootstrap2011/bootstrap-common",412,16,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",401,16,8,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",437,17,8,7]),types.vector(["bootstrap2011/bootstrap-common",445,17,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",437,17,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",468,18,8,7]),types.vector(["bootstrap2011/bootstrap-common",476,18,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",468,18,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",499,19,8,6]),types.vector(["bootstrap2011/bootstrap-common",506,19,15,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",499,19,8,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",528,20,8,8]),types.vector(["bootstrap2011/bootstrap-common",537,20,17,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",528,20,8,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",561,21,8,5]),types.vector(["bootstrap2011/bootstrap-common",567,21,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",561,21,8,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",592,22,8,7]),types.vector(["bootstrap2011/bootstrap-common",600,22,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",592,22,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"toplevel","depth":4,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",387,15,4,257]),types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",740,27,11,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2011/bootstrap-common",740,27,11,13]),types.vector(["bootstrap2011/bootstrap-common",754,27,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",762,28,5,4]),types.vector(["bootstrap2011/bootstrap-common",767,28,10,1]),types.vector(["bootstrap2011/bootstrap-common",769,28,12,2]),types.vector(["bootstrap2011/bootstrap-common",772,28,15,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",761,28,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",762,28,5,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",875,32,11,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2011/bootstrap-common",875,32,11,13]),types.vector(["bootstrap2011/bootstrap-common",889,32,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",897,33,5,13]),types.vector(["bootstrap2011/bootstrap-common",911,33,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",896,33,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",897,33,5,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",912,33,20,14]),types.vector(["bootstrap2011/bootstrap-common",927,33,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",911,33,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",912,33,20,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1105,38,11,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2011/bootstrap-common",1105,38,11,10]),types.vector(["bootstrap2011/bootstrap-common",1116,38,22,10]),types.vector(["bootstrap2011/bootstrap-common",1127,38,33,1]),types.vector(["bootstrap2011/bootstrap-common",1129,38,35,1]),types.vector(["bootstrap2011/bootstrap-common",1131,38,37,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1148,39,5,10]),types.vector(["bootstrap2011/bootstrap-common",1159,39,16,10]),types.vector(["bootstrap2011/bootstrap-common",1170,39,27,1]),types.vector(["bootstrap2011/bootstrap-common",1172,39,29,7]),types.vector(["bootstrap2011/bootstrap-common",1180,39,37,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1147,39,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1148,39,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1173,39,30,1]),types.vector(["bootstrap2011/bootstrap-common",1175,39,32,1]),types.vector(["bootstrap2011/bootstrap-common",1177,39,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1172,39,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1173,39,30,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1368,44,11,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2011/bootstrap-common",1368,44,11,9]),types.vector(["bootstrap2011/bootstrap-common",1378,44,21,10]),types.vector(["bootstrap2011/bootstrap-common",1389,44,32,1]),types.vector(["bootstrap2011/bootstrap-common",1391,44,34,1]),types.vector(["bootstrap2011/bootstrap-common",1393,44,36,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1410,45,5,11]),types.vector(["bootstrap2011/bootstrap-common",1422,45,17,10]),types.vector(["bootstrap2011/bootstrap-common",1433,45,28,1]),types.vector(["bootstrap2011/bootstrap-common",1435,45,30,31]),types.vector(["bootstrap2011/bootstrap-common",1467,45,62,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1409,45,4,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1410,45,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1436,45,31,1]),types.vector(["bootstrap2011/bootstrap-common",1438,45,33,25]),types.vector(["bootstrap2011/bootstrap-common",1464,45,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1435,45,30,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1436,45,31,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1439,45,34,12]),types.vector(["bootstrap2011/bootstrap-common",1452,45,47,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1438,45,33,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1439,45,34,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1518,48,11,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2011/bootstrap-common",1518,48,11,2]),types.vector(["bootstrap2011/bootstrap-common",1521,48,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1525,48,18,1]),types.vector(["bootstrap2011/bootstrap-common",1527,48,20,1]),types.vector(["bootstrap2011/bootstrap-common",1529,48,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1524,48,17,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1525,48,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1761,53,11,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2011/bootstrap-common",1761,53,11,4]),types.vector(["bootstrap2011/bootstrap-common",1766,53,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1770,53,20,3]),types.vector(["bootstrap2011/bootstrap-common",1774,53,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1769,53,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1770,53,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1775,53,25,1]),types.vector(["bootstrap2011/bootstrap-common",1777,53,27,1]),types.vector(["bootstrap2011/bootstrap-common",1779,53,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1774,53,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1775,53,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1780,53,30,1]),types.vector(["bootstrap2011/bootstrap-common",1782,53,32,2]),types.vector(["bootstrap2011/bootstrap-common",1785,53,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1779,53,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1780,53,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1782,53,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2023,58,11,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2023,58,11,6]),types.vector(["bootstrap2011/bootstrap-common",2030,58,18,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2034,58,22,3]),types.vector(["bootstrap2011/bootstrap-common",2038,58,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2033,58,21,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2034,58,22,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2039,58,27,1]),types.vector(["bootstrap2011/bootstrap-common",2041,58,29,1]),types.vector(["bootstrap2011/bootstrap-common",2043,58,31,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2038,58,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2039,58,27,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2044,58,32,1]),types.vector(["bootstrap2011/bootstrap-common",2046,58,34,2]),types.vector(["bootstrap2011/bootstrap-common",2049,58,37,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2043,58,31,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2044,58,32,1])},"rands":[{"$":"toplevel","depth":5,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2046,58,34,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2285,63,11,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2285,63,11,7]),types.vector(["bootstrap2011/bootstrap-common",2293,63,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2297,63,23,3]),types.vector(["bootstrap2011/bootstrap-common",2301,63,27,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2296,63,22,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2297,63,23,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2302,63,28,1]),types.vector(["bootstrap2011/bootstrap-common",2304,63,30,1]),types.vector(["bootstrap2011/bootstrap-common",2306,63,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2301,63,27,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2302,63,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2307,63,33,1]),types.vector(["bootstrap2011/bootstrap-common",2309,63,35,2]),types.vector(["bootstrap2011/bootstrap-common",2312,63,38,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2306,63,32,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2307,63,33,1])},"rands":[{"$":"toplevel","depth":5,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2309,63,35,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2401,67,11,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2401,67,11,4]),types.vector(["bootstrap2011/bootstrap-common",2406,67,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2416,68,5,8]),types.vector(["bootstrap2011/bootstrap-common",2425,68,14,3]),types.vector(["bootstrap2011/bootstrap-common",2429,68,18,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2415,68,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2416,68,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2430,68,19,6]),types.vector(["bootstrap2011/bootstrap-common",2437,68,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2429,68,18,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2430,68,19,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2438,68,27,6]),types.vector(["bootstrap2011/bootstrap-common",2445,68,34,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2437,68,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2438,68,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2568,72,11,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2568,72,11,7]),types.vector(["bootstrap2011/bootstrap-common",2576,72,19,1]),types.vector(["bootstrap2011/bootstrap-common",2578,72,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2587,73,5,6]),types.vector(["bootstrap2011/bootstrap-common",2599,74,5,29]),types.vector(["bootstrap2011/bootstrap-common",2634,75,5,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2586,73,4,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2587,73,5,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-common",2600,74,6,6]),types.vector(["bootstrap2011/bootstrap-common",2608,74,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2614,74,20,6]),types.vector(["bootstrap2011/bootstrap-common",2621,74,27,3]),types.vector(["bootstrap2011/bootstrap-common",2625,74,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2613,74,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2614,74,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2652,77,11,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2652,77,11,3]),types.vector(["bootstrap2011/bootstrap-common",2656,77,15,1]),types.vector(["bootstrap2011/bootstrap-common",2658,77,17,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2666,78,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2670,78,9,5]),types.vector(["bootstrap2011/bootstrap-common",2676,78,15,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2670,78,9,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2680,78,19,7]),types.vector(["bootstrap2011/bootstrap-common",2688,78,27,1]),types.vector(["bootstrap2011/bootstrap-common",2690,78,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2679,78,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2680,78,19,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2694,78,33,6]),types.vector(["bootstrap2011/bootstrap-common",2701,78,40,1]),types.vector(["bootstrap2011/bootstrap-common",2703,78,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2693,78,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2694,78,33,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}}]}}, 'provides': ["overlay-at","sine","subset?","tangent","type","sq","string->image","pick","put-image","in?","number->image","cosine"]}; +window.COLLECTIONS["bootstrap2011/bootstrap-common"] = { 'name': "bootstrap2011/bootstrap-common", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"cosine"},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",373,14,11,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2011/bootstrap-common",373,14,11,4]),types.vector(["bootstrap2011/bootstrap-common",378,14,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",401,16,8,10]),types.vector(["bootstrap2011/bootstrap-common",412,16,19,3]),types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",401,16,8,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",400,16,7,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",437,17,8,7]),types.vector(["bootstrap2011/bootstrap-common",445,17,16,3]),types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",437,17,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",436,17,7,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",468,18,8,7]),types.vector(["bootstrap2011/bootstrap-common",476,18,16,3]),types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",468,18,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",467,18,7,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",499,19,8,6]),types.vector(["bootstrap2011/bootstrap-common",506,19,15,3]),types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",499,19,8,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",498,19,7,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",528,20,8,8]),types.vector(["bootstrap2011/bootstrap-common",537,20,17,3]),types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",528,20,8,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",527,20,7,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",561,21,8,5]),types.vector(["bootstrap2011/bootstrap-common",567,21,14,3]),types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",561,21,8,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",560,21,7,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",592,22,8,7]),types.vector(["bootstrap2011/bootstrap-common",600,22,16,3]),types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",592,22,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",591,22,7,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4]),types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},{"$":"toplevel","depth":4,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",622,23,7,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",387,15,4,257]),types.vector(["bootstrap2011/bootstrap-common",387,15,4,257]),types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",387,15,4,257])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",740,27,11,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2011/bootstrap-common",740,27,11,13]),types.vector(["bootstrap2011/bootstrap-common",754,27,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",762,28,5,4]),types.vector(["bootstrap2011/bootstrap-common",767,28,10,1]),types.vector(["bootstrap2011/bootstrap-common",769,28,12,2]),types.vector(["bootstrap2011/bootstrap-common",772,28,15,6]),types.vector(["bootstrap2011/bootstrap-common",761,28,4,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",761,28,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",762,28,5,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",875,32,11,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2011/bootstrap-common",875,32,11,13]),types.vector(["bootstrap2011/bootstrap-common",889,32,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",897,33,5,13]),types.vector(["bootstrap2011/bootstrap-common",911,33,19,18]),types.vector(["bootstrap2011/bootstrap-common",896,33,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",896,33,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",897,33,5,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",912,33,20,14]),types.vector(["bootstrap2011/bootstrap-common",927,33,35,1]),types.vector(["bootstrap2011/bootstrap-common",911,33,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",911,33,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",912,33,20,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1105,38,11,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2011/bootstrap-common",1105,38,11,10]),types.vector(["bootstrap2011/bootstrap-common",1116,38,22,10]),types.vector(["bootstrap2011/bootstrap-common",1127,38,33,1]),types.vector(["bootstrap2011/bootstrap-common",1129,38,35,1]),types.vector(["bootstrap2011/bootstrap-common",1131,38,37,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1148,39,5,10]),types.vector(["bootstrap2011/bootstrap-common",1159,39,16,10]),types.vector(["bootstrap2011/bootstrap-common",1170,39,27,1]),types.vector(["bootstrap2011/bootstrap-common",1172,39,29,7]),types.vector(["bootstrap2011/bootstrap-common",1180,39,37,10]),types.vector(["bootstrap2011/bootstrap-common",1147,39,4,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1147,39,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1148,39,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1173,39,30,1]),types.vector(["bootstrap2011/bootstrap-common",1175,39,32,1]),types.vector(["bootstrap2011/bootstrap-common",1177,39,34,1]),types.vector(["bootstrap2011/bootstrap-common",1172,39,29,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1172,39,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1173,39,30,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1368,44,11,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2011/bootstrap-common",1368,44,11,9]),types.vector(["bootstrap2011/bootstrap-common",1378,44,21,10]),types.vector(["bootstrap2011/bootstrap-common",1389,44,32,1]),types.vector(["bootstrap2011/bootstrap-common",1391,44,34,1]),types.vector(["bootstrap2011/bootstrap-common",1393,44,36,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1410,45,5,11]),types.vector(["bootstrap2011/bootstrap-common",1422,45,17,10]),types.vector(["bootstrap2011/bootstrap-common",1433,45,28,1]),types.vector(["bootstrap2011/bootstrap-common",1435,45,30,31]),types.vector(["bootstrap2011/bootstrap-common",1467,45,62,10]),types.vector(["bootstrap2011/bootstrap-common",1409,45,4,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1409,45,4,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1410,45,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1436,45,31,1]),types.vector(["bootstrap2011/bootstrap-common",1438,45,33,25]),types.vector(["bootstrap2011/bootstrap-common",1464,45,59,1]),types.vector(["bootstrap2011/bootstrap-common",1435,45,30,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1435,45,30,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1436,45,31,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1439,45,34,12]),types.vector(["bootstrap2011/bootstrap-common",1452,45,47,10]),types.vector(["bootstrap2011/bootstrap-common",1438,45,33,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1438,45,33,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1439,45,34,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1518,48,11,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2011/bootstrap-common",1518,48,11,2]),types.vector(["bootstrap2011/bootstrap-common",1521,48,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1525,48,18,1]),types.vector(["bootstrap2011/bootstrap-common",1527,48,20,1]),types.vector(["bootstrap2011/bootstrap-common",1529,48,22,1]),types.vector(["bootstrap2011/bootstrap-common",1524,48,17,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1524,48,17,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1525,48,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1761,53,11,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2011/bootstrap-common",1761,53,11,4]),types.vector(["bootstrap2011/bootstrap-common",1766,53,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1770,53,20,3]),types.vector(["bootstrap2011/bootstrap-common",1774,53,24,16]),types.vector(["bootstrap2011/bootstrap-common",1769,53,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1769,53,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1770,53,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1775,53,25,1]),types.vector(["bootstrap2011/bootstrap-common",1777,53,27,1]),types.vector(["bootstrap2011/bootstrap-common",1779,53,29,10]),types.vector(["bootstrap2011/bootstrap-common",1774,53,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1774,53,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1775,53,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",1780,53,30,1]),types.vector(["bootstrap2011/bootstrap-common",1782,53,32,2]),types.vector(["bootstrap2011/bootstrap-common",1785,53,35,3]),types.vector(["bootstrap2011/bootstrap-common",1779,53,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",1779,53,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1780,53,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",1782,53,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2023,58,11,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2023,58,11,6]),types.vector(["bootstrap2011/bootstrap-common",2030,58,18,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2034,58,22,3]),types.vector(["bootstrap2011/bootstrap-common",2038,58,26,16]),types.vector(["bootstrap2011/bootstrap-common",2033,58,21,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2033,58,21,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2034,58,22,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2039,58,27,1]),types.vector(["bootstrap2011/bootstrap-common",2041,58,29,1]),types.vector(["bootstrap2011/bootstrap-common",2043,58,31,10]),types.vector(["bootstrap2011/bootstrap-common",2038,58,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2038,58,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2039,58,27,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2044,58,32,1]),types.vector(["bootstrap2011/bootstrap-common",2046,58,34,2]),types.vector(["bootstrap2011/bootstrap-common",2049,58,37,3]),types.vector(["bootstrap2011/bootstrap-common",2043,58,31,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2043,58,31,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2044,58,32,1])},"rands":[{"$":"toplevel","depth":5,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2046,58,34,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2285,63,11,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2285,63,11,7]),types.vector(["bootstrap2011/bootstrap-common",2293,63,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2297,63,23,3]),types.vector(["bootstrap2011/bootstrap-common",2301,63,27,16]),types.vector(["bootstrap2011/bootstrap-common",2296,63,22,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2296,63,22,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2297,63,23,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2302,63,28,1]),types.vector(["bootstrap2011/bootstrap-common",2304,63,30,1]),types.vector(["bootstrap2011/bootstrap-common",2306,63,32,10]),types.vector(["bootstrap2011/bootstrap-common",2301,63,27,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2301,63,27,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2302,63,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2307,63,33,1]),types.vector(["bootstrap2011/bootstrap-common",2309,63,35,2]),types.vector(["bootstrap2011/bootstrap-common",2312,63,38,3]),types.vector(["bootstrap2011/bootstrap-common",2306,63,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2306,63,32,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2307,63,33,1])},"rands":[{"$":"toplevel","depth":5,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2309,63,35,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2401,67,11,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2401,67,11,4]),types.vector(["bootstrap2011/bootstrap-common",2406,67,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2416,68,5,8]),types.vector(["bootstrap2011/bootstrap-common",2425,68,14,3]),types.vector(["bootstrap2011/bootstrap-common",2429,68,18,21]),types.vector(["bootstrap2011/bootstrap-common",2415,68,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2415,68,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2416,68,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2430,68,19,6]),types.vector(["bootstrap2011/bootstrap-common",2437,68,26,12]),types.vector(["bootstrap2011/bootstrap-common",2429,68,18,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2429,68,18,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2430,68,19,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2438,68,27,6]),types.vector(["bootstrap2011/bootstrap-common",2445,68,34,3]),types.vector(["bootstrap2011/bootstrap-common",2437,68,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2437,68,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2438,68,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2568,72,11,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2568,72,11,7]),types.vector(["bootstrap2011/bootstrap-common",2576,72,19,1]),types.vector(["bootstrap2011/bootstrap-common",2578,72,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2587,73,5,6]),types.vector(["bootstrap2011/bootstrap-common",2599,74,5,29]),types.vector(["bootstrap2011/bootstrap-common",2634,75,5,1]),types.vector(["bootstrap2011/bootstrap-common",2586,73,4,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2586,73,4,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2587,73,5,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-common",2600,74,6,6]),types.vector(["bootstrap2011/bootstrap-common",2608,74,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2614,74,20,6]),types.vector(["bootstrap2011/bootstrap-common",2621,74,27,3]),types.vector(["bootstrap2011/bootstrap-common",2625,74,31,1]),types.vector(["bootstrap2011/bootstrap-common",2613,74,19,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2613,74,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2614,74,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2652,77,11,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2011/bootstrap-common",2652,77,11,3]),types.vector(["bootstrap2011/bootstrap-common",2656,77,15,1]),types.vector(["bootstrap2011/bootstrap-common",2658,77,17,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2666,78,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2670,78,9,5]),types.vector(["bootstrap2011/bootstrap-common",2676,78,15,1]),types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2670,78,9,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2669,78,8,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2680,78,19,7]),types.vector(["bootstrap2011/bootstrap-common",2688,78,27,1]),types.vector(["bootstrap2011/bootstrap-common",2690,78,29,1]),types.vector(["bootstrap2011/bootstrap-common",2679,78,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2679,78,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2680,78,19,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-common",2694,78,33,6]),types.vector(["bootstrap2011/bootstrap-common",2701,78,40,1]),types.vector(["bootstrap2011/bootstrap-common",2703,78,42,1]),types.vector(["bootstrap2011/bootstrap-common",2693,78,32,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-common",2693,78,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-common",2694,78,33,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}}]}}, 'provides': ["overlay-at","sine","subset?","tangent","type","sq","string->image","pick","put-image","in?","number->image","cosine"]}; diff --git a/servlet-htdocs/collects/bootstrap2011/bootstrap-teachpack.js b/servlet-htdocs/collects/bootstrap2011/bootstrap-teachpack.js index 65d4cca..6346404 100644 --- a/servlet-htdocs/collects/bootstrap2011/bootstrap-teachpack.js +++ b/servlet-htdocs/collects/bootstrap2011/bootstrap-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2011/bootstrap-teachpack"] = { 'name': "bootstrap2011/bootstrap-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"dangerImgs"},{"$":"global-bucket","value":"origTargets"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"origDangers"},{"$":"global-bucket","value":"update-danger*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"onscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"projectileImg"},{"$":"global-bucket","value":"update-projectile*"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"update-danger"},{"$":"global-bucket","value":"update-projectile"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"score"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"projectiles"},{"$":"global-bucket","value":"dangers"},{"$":"global-bucket","value":"keypress*"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"in-domain?"},{"$":"global-bucket","value":"next-posn"},{"$":"global-bucket","value":"next-x"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"others"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"screen-point"},{"$":"global-bucket","value":"player-point"},{"$":"global-bucket","value":"py"},{"$":"global-bucket","value":"color"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"cy"},{"$":"global-bucket","value":"cx"},{"$":"global-bucket","value":"px"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-with-player"},{"$":"global-bucket","value":"world-with-shots"},{"$":"global-bucket","value":"world-with-timer"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-with-targets"},{"$":"global-bucket","value":"world-with-score"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world-with-dangers"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-shots"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-dangers"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"move-all"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"survival-checker"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"random-posn"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"play"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"make-game"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"example-world"},{"$":"global-bucket","value":"get-direction"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"check-collision"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"being-source"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"add-informative-triangle"},{"$":"global-bucket","value":"animate/proc"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"*player-x*"},{"$":"global-bucket","value":"*score*"},{"$":"global-bucket","value":"*target-increment*"},{"$":"global-bucket","value":"*player-y*"},{"$":"global-bucket","value":"*distance*"},{"$":"global-bucket","value":"*line-length*"},{"$":"global-bucket","value":"*distances-color*"},{"$":"global-bucket","value":"*danger-increment*"},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("triangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text/font"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("stop-when"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("round"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("radial-star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("print-values"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("ormap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("line"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("inexact->exact"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("format"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("false"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("error"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("circle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("apply"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("EXAMPLE"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",193,9,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",212,10,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",232,11,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",264,12,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",277,12,21,3]),types.vector(["bootstrap2011/bootstrap-teachpack",281,12,25,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",276,12,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",277,12,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",299,13,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",311,13,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",315,13,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",310,13,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",311,13,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",316,13,25,9]),types.vector(["bootstrap2011/bootstrap-teachpack",326,13,35,5]),types.vector(["bootstrap2011/bootstrap-teachpack",332,13,41,6]),types.vector(["bootstrap2011/bootstrap-teachpack",339,13,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",347,13,56,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",315,13,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",316,13,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",326,13,35,5])},{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",332,13,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",367,14,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",367,14,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",377,14,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",384,14,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",376,14,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",377,14,19,6])},"rands":[{"$":"constant","value":200}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",398,15,8,18])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",429,16,8,18])}],"body":{"$":"constant","value":-50}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",500,19,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",509,19,17,3]),types.vector(["bootstrap2011/bootstrap-teachpack",513,19,21,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",508,19,16,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",509,19,17,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",525,20,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",537,20,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",541,20,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",536,20,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",537,20,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",553,21,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",565,21,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",569,21,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",564,21,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",565,21,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",604,24,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",619,24,23,3]),types.vector(["bootstrap2011/bootstrap-teachpack",623,24,27,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",618,24,22,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",619,24,23,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",624,24,28,6]),types.vector(["bootstrap2011/bootstrap-teachpack",631,24,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",633,24,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",649,25,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",661,25,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",665,25,24,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",660,25,19,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",661,25,20,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",666,25,25,6]),types.vector(["bootstrap2011/bootstrap-teachpack",673,25,32,2]),types.vector(["bootstrap2011/bootstrap-teachpack",676,25,35,2]),types.vector(["bootstrap2011/bootstrap-teachpack",679,25,38,2]),types.vector(["bootstrap2011/bootstrap-teachpack",682,25,41,2])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",699,26,8,17])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",718,26,27,3]),types.vector(["bootstrap2011/bootstrap-teachpack",722,26,31,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",717,26,26,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",718,26,27,3])},"rands":[{"$":"constant","value":""}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",877,33,15,5])},{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"toplevel","depth":0,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"toplevel","depth":0,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"toplevel","depth":0,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":3},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("source")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1023,36,15,5])},{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":8},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("dangers")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("shots")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":7},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1122,39,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1131,39,17,7]),types.vector(["bootstrap2011/bootstrap-teachpack",1139,39,25,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1146,39,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1130,39,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1131,39,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1139,39,25,6])},{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1146,39,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1167,40,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1176,40,17,7]),types.vector(["bootstrap2011/bootstrap-teachpack",1184,40,25,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1191,40,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1175,40,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1176,40,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1184,40,25,6])},{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1191,40,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1259,43,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1259,43,9,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1271,43,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1278,43,28,9]),types.vector(["bootstrap2011/bootstrap-teachpack",1288,43,38,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1302,43,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1277,43,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1278,43,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1289,43,39,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1296,43,46,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1288,43,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1289,43,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1303,43,53,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1305,43,55,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1312,43,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1302,43,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1303,43,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1305,43,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1313,43,63,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1315,43,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1312,43,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1313,43,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1316,43,66,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1323,43,73,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1315,43,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1316,43,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1364,46,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-dangers"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1364,46,9,18]),types.vector(["bootstrap2011/bootstrap-teachpack",1383,46,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1385,46,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1389,46,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1400,46,45,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1418,46,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1434,46,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1452,46,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",1469,46,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1482,46,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1498,46,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1514,46,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1388,46,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1389,46,34,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1419,46,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1431,46,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1418,46,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1419,46,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1435,46,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1449,46,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1434,46,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1435,46,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1453,46,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1466,46,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1452,46,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1453,46,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1470,46,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",1479,46,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1469,46,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1470,46,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1483,46,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1495,46,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1482,46,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1483,46,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1499,46,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1511,46,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1498,46,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1499,46,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1515,46,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1527,46,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1514,46,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1515,46,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1541,47,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-shots"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1541,47,9,16]),types.vector(["bootstrap2011/bootstrap-teachpack",1560,47,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1562,47,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1566,47,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1577,47,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1595,47,63,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1611,47,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1629,47,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",1646,47,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1659,47,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1675,47,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1691,47,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1565,47,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1566,47,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1578,47,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1592,47,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1577,47,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1578,47,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1612,47,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1626,47,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1611,47,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1612,47,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1630,47,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1643,47,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1629,47,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1630,47,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1647,47,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",1656,47,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1646,47,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1647,47,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1660,47,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1672,47,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1659,47,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1660,47,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1676,47,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1688,47,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1675,47,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1676,47,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1692,47,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1704,47,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1691,47,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1692,47,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1718,48,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-targets"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1718,48,9,18]),types.vector(["bootstrap2011/bootstrap-teachpack",1737,48,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1739,48,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1743,48,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1754,48,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1772,48,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1788,48,79,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1806,48,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",1823,48,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1836,48,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1852,48,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1868,48,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1742,48,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1743,48,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1755,48,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1769,48,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1754,48,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1755,48,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1773,48,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1785,48,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1772,48,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1773,48,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1807,48,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1820,48,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1806,48,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1807,48,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1824,48,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",1833,48,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1823,48,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1824,48,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1837,48,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1849,48,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1836,48,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1837,48,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1853,48,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1865,48,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1852,48,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1853,48,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1869,48,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1881,48,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1868,48,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1869,48,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1895,49,9,17])}],"body":{"$":"lam","name":types.symbol("world-with-player"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1895,49,9,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1914,49,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1916,49,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1920,49,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1931,49,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1949,49,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1965,49,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1983,49,97,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2000,49,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2013,49,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2029,49,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2045,49,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1919,49,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1920,49,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1932,49,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1946,49,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1931,49,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1932,49,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1950,49,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1962,49,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1949,49,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1950,49,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1966,49,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1980,49,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1965,49,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1966,49,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2001,49,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",2010,49,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2000,49,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2001,49,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2014,49,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2026,49,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2013,49,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2014,49,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2030,49,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2042,49,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2029,49,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2030,49,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2046,49,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2058,49,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2045,49,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2046,49,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2072,50,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-score"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2072,50,9,16]),types.vector(["bootstrap2011/bootstrap-teachpack",2091,50,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2093,50,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2097,50,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",2108,50,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",2126,50,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2142,50,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",2160,50,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",2177,50,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2190,50,127,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2206,50,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2222,50,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2096,50,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2097,50,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2109,50,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2123,50,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2108,50,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2109,50,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2127,50,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2139,50,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2126,50,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2127,50,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2143,50,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2157,50,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2142,50,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2143,50,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2161,50,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2174,50,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2160,50,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2161,50,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2178,50,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",2187,50,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2177,50,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2178,50,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2207,50,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2219,50,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2206,50,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2207,50,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2223,50,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2235,50,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2222,50,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2223,50,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2249,51,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-timer"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2249,51,9,16]),types.vector(["bootstrap2011/bootstrap-teachpack",2268,51,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2270,51,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2274,51,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",2285,51,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",2303,51,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2319,51,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",2337,51,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",2354,51,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2367,51,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2383,51,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2399,51,159,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2273,51,33,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2274,51,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2286,51,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2300,51,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2285,51,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2286,51,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2304,51,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2316,51,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2303,51,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2304,51,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2320,51,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2334,51,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2319,51,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2320,51,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2338,51,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2351,51,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2337,51,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2338,51,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2355,51,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",2364,51,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2354,51,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2355,51,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2368,51,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2380,51,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2367,51,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2368,51,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2384,51,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2396,51,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2383,51,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2384,51,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2478,54,9,24])}],"body":{"$":"lam","name":types.symbol("add-informative-triangle"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2478,54,9,24]),types.vector(["bootstrap2011/bootstrap-teachpack",2503,54,34,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2506,54,37,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2509,54,40,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2515,54,46,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2536,55,9,78]),types.vector(["bootstrap2011/bootstrap-teachpack",2550,55,23,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2536,55,9,78])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2536,55,9,78]),types.vector(["bootstrap2011/bootstrap-teachpack",2537,55,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2624,56,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",2628,56,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2624,56,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2624,56,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",2625,56,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2660,57,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",2664,57,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2660,57,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2660,57,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",2661,57,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2693,58,5,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2697,58,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2702,58,14,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2704,58,16,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2707,58,19,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2702,58,14,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2697,58,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2712,58,24,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2714,58,26,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2717,58,29,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2712,58,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2789,60,8,839]),types.vector(["bootstrap2011/bootstrap-teachpack",2799,60,18,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2828,61,18,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2859,62,20,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2789,60,8,839])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2789,60,8,839]),types.vector(["bootstrap2011/bootstrap-teachpack",2796,60,15,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2825,61,15,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2854,62,15,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2933,63,11,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2957,64,11,52]),types.vector(["bootstrap2011/bootstrap-teachpack",3021,65,11,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3037,65,27,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3051,66,11,575])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2932,63,10,695])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2933,63,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2958,64,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",2963,64,17,36]),types.vector(["bootstrap2011/bootstrap-teachpack",3000,64,54,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3003,64,57,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2957,64,11,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2958,64,12,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2964,64,18,4]),types.vector(["bootstrap2011/bootstrap-teachpack",2969,64,23,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2963,64,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2970,64,24,21]),types.vector(["bootstrap2011/bootstrap-teachpack",2992,64,46,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2995,64,49,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2969,64,23,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2971,64,25,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2977,64,31,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2970,64,24,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2971,64,25,5])},"rands":[{"$":"toplevel","depth":11,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2977,64,31,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3022,65,12,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3024,65,14,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3027,65,17,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3021,65,11,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3022,65,12,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3028,65,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3030,65,20,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3033,65,23,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3027,65,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3028,65,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3052,66,12,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3076,67,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",3106,68,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3122,68,28,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3137,69,12,488])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3051,66,11,575])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3052,66,12,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3077,67,13,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3082,67,18,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3085,67,21,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3087,67,23,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3076,67,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3077,67,13,4])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3107,68,13,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3109,68,15,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3112,68,18,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3106,68,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3107,68,13,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3113,68,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3115,68,21,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3118,68,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3112,68,18,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3113,68,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3138,69,13,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3163,70,13,52]),types.vector(["bootstrap2011/bootstrap-teachpack",3229,71,13,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3232,71,16,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3261,72,13,363])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3137,69,12,488])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3138,69,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3164,70,14,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3169,70,19,36]),types.vector(["bootstrap2011/bootstrap-teachpack",3206,70,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3209,70,59,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3163,70,13,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3164,70,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3170,70,20,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3175,70,25,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3169,70,19,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3176,70,26,21]),types.vector(["bootstrap2011/bootstrap-teachpack",3198,70,48,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3201,70,51,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3175,70,25,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3177,70,27,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3183,70,33,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3176,70,26,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3177,70,27,5])},"rands":[{"$":"toplevel","depth":19,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3183,70,33,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3233,71,17,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3235,71,19,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3238,71,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3232,71,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3233,71,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3239,71,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3241,71,25,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3244,71,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3238,71,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3239,71,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3262,72,14,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3288,73,14,17]),types.vector(["bootstrap2011/bootstrap-teachpack",3320,74,14,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3323,74,17,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3353,75,14,270])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3261,72,13,363])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3262,72,14,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3289,73,15,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3294,73,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3296,73,22,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3299,73,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3288,73,14,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3289,73,15,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3324,74,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3326,74,20,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3329,74,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3323,74,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":18,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3324,74,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3330,74,24,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3332,74,26,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3335,74,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3329,74,23,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3330,74,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3354,75,15,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3381,76,15,55]),types.vector(["bootstrap2011/bootstrap-teachpack",3452,77,15,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3468,77,31,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3499,78,15,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3353,75,14,270])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3354,75,15,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3382,76,16,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3387,76,21,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3427,76,61,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3430,76,64,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3381,76,15,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":23,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3382,76,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3388,76,22,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3393,76,27,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3387,76,21,39])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3394,76,28,18]),types.vector(["bootstrap2011/bootstrap-teachpack",3413,76,47,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3416,76,50,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3419,76,53,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3422,76,56,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3393,76,27,32])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3395,76,29,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3401,76,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3394,76,28,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":29,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3395,76,29,5])},"rands":[{"$":"toplevel","depth":29,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3401,76,35,10])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3453,77,16,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3455,77,18,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3458,77,21,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3452,77,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3453,77,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3459,77,22,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3461,77,24,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3464,77,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3458,77,21,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3459,77,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3469,77,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3471,77,34,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3474,77,37,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3468,77,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3469,77,32,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3475,77,38,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3477,77,40,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3480,77,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3474,77,37,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3475,77,38,1])},"rands":[{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3500,78,16,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3528,79,16,18]),types.vector(["bootstrap2011/bootstrap-teachpack",3563,80,16,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3579,80,32,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3611,81,16,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3499,78,15,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3500,78,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3529,79,17,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3534,79,22,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3537,79,25,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3540,79,28,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3528,79,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":27,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3529,79,17,4])},"rands":[{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3564,80,17,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3566,80,19,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3569,80,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3563,80,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3564,80,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3570,80,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3572,80,25,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3575,80,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3569,80,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3570,80,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3580,80,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3582,80,35,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3585,80,38,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3579,80,32,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3580,80,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3586,80,39,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3588,80,41,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3591,80,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3585,80,38,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3586,80,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":36,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2800,60,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2802,60,21,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2805,60,24,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2799,60,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2800,60,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2829,61,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2831,61,21,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2834,61,24,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2828,61,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2829,61,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2860,62,21,6]),types.vector(["bootstrap2011/bootstrap-teachpack",2868,62,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2874,62,35,14]),types.vector(["bootstrap2011/bootstrap-teachpack",2889,62,50,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2873,62,34,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2874,62,35,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2890,62,51,14]),types.vector(["bootstrap2011/bootstrap-teachpack",2905,62,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2889,62,50,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2890,62,51,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2906,62,67,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2912,62,73,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2905,62,66,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2906,62,67,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2665,57,14,6]),types.vector(["bootstrap2011/bootstrap-teachpack",2672,57,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2664,57,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2665,57,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2629,56,14,6]),types.vector(["bootstrap2011/bootstrap-teachpack",2636,56,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2628,56,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2629,56,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2551,55,24,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2563,55,36,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2550,55,23,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2551,55,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2564,55,37,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2574,55,47,18]),types.vector(["bootstrap2011/bootstrap-teachpack",2593,55,66,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2563,55,36,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2564,55,37,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2575,55,48,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2581,55,54,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2574,55,47,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2575,55,48,5])},"rands":[{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2581,55,54,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2594,55,67,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2600,55,73,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2593,55,66,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2594,55,67,5])},"rands":[{"$":"toplevel","depth":5,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2600,55,73,10])}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3750,85,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3750,85,9,10]),types.vector(["bootstrap2011/bootstrap-teachpack",3761,85,20,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3767,85,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3788,86,9,47]),types.vector(["bootstrap2011/bootstrap-teachpack",3802,86,23,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3788,86,9,47])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3788,86,9,47]),types.vector(["bootstrap2011/bootstrap-teachpack",3789,86,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3845,87,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",3849,87,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3845,87,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3845,87,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",3846,87,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3881,88,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",3885,88,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3881,88,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3881,88,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",3882,88,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3917,89,9,235]),types.vector(["bootstrap2011/bootstrap-teachpack",3928,89,20,223])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3917,89,9,235])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3917,89,9,235]),types.vector(["bootstrap2011/bootstrap-teachpack",3918,89,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4159,93,5,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4171,93,17,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4193,93,39,2]),types.vector(["bootstrap2011/bootstrap-teachpack",4196,93,42,2]),types.vector(["bootstrap2011/bootstrap-teachpack",4199,93,45,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4158,93,4,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4159,93,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4172,93,18,13]),types.vector(["bootstrap2011/bootstrap-teachpack",4186,93,32,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4171,93,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4172,93,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3929,89,21,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3933,89,25,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3942,89,34,25]),types.vector(["bootstrap2011/bootstrap-teachpack",3968,89,60,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3933,89,25,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3943,89,35,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3949,89,41,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3942,89,34,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3943,89,35,5])},"rands":[{"$":"toplevel","depth":8,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3949,89,41,17])}]}}},{"$":"constant","value":""}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4032,91,25,24]),types.vector(["bootstrap2011/bootstrap-teachpack",4057,91,50,2]),types.vector(["bootstrap2011/bootstrap-teachpack",4060,91,53,2]),types.vector(["bootstrap2011/bootstrap-teachpack",4063,91,56,25]),types.vector(["bootstrap2011/bootstrap-teachpack",4139,92,50,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4031,91,24,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4032,91,25,24])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4064,91,57,5]),types.vector(["bootstrap2011/bootstrap-teachpack",4070,91,63,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4063,91,56,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4064,91,57,5])},"rands":[{"$":"toplevel","depth":6,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4070,91,63,17])}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3886,88,14,6]),types.vector(["bootstrap2011/bootstrap-teachpack",3893,88,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3885,88,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3886,88,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3850,87,14,6]),types.vector(["bootstrap2011/bootstrap-teachpack",3857,87,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3849,87,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3850,87,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3803,86,24,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3815,86,36,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3802,86,23,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3803,86,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3816,86,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",3827,86,48,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3815,86,36,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3816,86,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4452,99,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",4452,99,9,10]),types.vector(["bootstrap2011/bootstrap-teachpack",4463,99,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4475,100,9,118]),types.vector(["bootstrap2011/bootstrap-teachpack",4489,100,23,103])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4475,100,9,118])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",4475,100,9,118]),types.vector(["bootstrap2011/bootstrap-teachpack",4476,100,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4603,102,9,348]),types.vector(["bootstrap2011/bootstrap-teachpack",4611,102,17,339])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4603,102,9,348])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",4603,102,9,348]),types.vector(["bootstrap2011/bootstrap-teachpack",4604,102,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4961,109,9,90]),types.vector(["bootstrap2011/bootstrap-teachpack",4976,110,10,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4961,109,9,90])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",4961,109,9,90]),types.vector(["bootstrap2011/bootstrap-teachpack",4962,109,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5071,112,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5080,112,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5091,112,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5070,112,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5071,112,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5080,112,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5092,112,28,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5099,112,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5091,112,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5092,112,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5100,112,36,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5111,112,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5099,112,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5100,112,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5112,112,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",5125,112,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5111,112,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5112,112,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5138,113,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5147,113,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5158,113,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5137,113,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5138,113,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5147,113,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5159,113,28,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5166,113,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5158,113,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5159,113,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5167,113,36,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5178,113,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5166,113,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5167,113,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5179,113,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",5192,113,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5178,113,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5179,113,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5205,114,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",5217,114,19,77]),types.vector(["bootstrap2011/bootstrap-teachpack",5304,115,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",5350,115,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5363,116,9,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5204,114,6,208])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5205,114,7,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5218,114,20,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5228,114,30,12]),types.vector(["bootstrap2011/bootstrap-teachpack",5241,114,43,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5244,114,46,19]),types.vector(["bootstrap2011/bootstrap-teachpack",5264,114,66,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5267,114,69,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5276,114,78,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5284,114,86,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5290,114,92,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5217,114,19,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5218,114,20,9])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":18},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5245,114,47,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5251,114,53,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5244,114,46,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5245,114,47,5])},"rands":[{"$":"toplevel","depth":13,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5251,114,53,11])}]}}},{"$":"constant","value":false},{"$":"constant","value":types.symbol("default")},{"$":"constant","value":types.symbol("italic")},{"$":"constant","value":types.symbol("bold")},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5305,115,10,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5314,115,19,32]),types.vector(["bootstrap2011/bootstrap-teachpack",5347,115,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5304,115,9,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5305,115,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5315,115,20,11]),types.vector(["bootstrap2011/bootstrap-teachpack",5327,115,32,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5314,115,19,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5315,115,20,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5328,115,33,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5334,115,39,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5327,115,32,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5328,115,33,5])},"rands":[{"$":"toplevel","depth":8,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5334,115,39,10])}]}}}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5364,116,10,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5370,116,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5381,116,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5400,116,46,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5363,116,9,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5364,116,10,5])},"rands":[{"$":"toplevel","depth":7,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5370,116,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5382,116,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5388,116,34,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5381,116,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5382,116,28,5])},"rands":[{"$":"toplevel","depth":8,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5388,116,34,10])}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4977,110,11,6]),types.vector(["bootstrap2011/bootstrap-teachpack",4984,110,18,17]),types.vector(["bootstrap2011/bootstrap-teachpack",5002,110,36,17]),types.vector(["bootstrap2011/bootstrap-teachpack",5020,110,54,15]),types.vector(["bootstrap2011/bootstrap-teachpack",5036,110,70,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4976,110,10,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4977,110,11,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4985,110,19,13]),types.vector(["bootstrap2011/bootstrap-teachpack",4999,110,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4984,110,18,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4985,110,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5003,110,37,13]),types.vector(["bootstrap2011/bootstrap-teachpack",5017,110,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5002,110,36,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5003,110,37,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5021,110,55,11]),types.vector(["bootstrap2011/bootstrap-teachpack",5033,110,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5020,110,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5021,110,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5037,110,71,4]),types.vector(["bootstrap2011/bootstrap-teachpack",5042,110,76,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5036,110,70,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5037,110,71,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4612,102,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4616,102,22,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4618,102,24,15]),types.vector(["bootstrap2011/bootstrap-teachpack",4634,102,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4616,102,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4619,102,25,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4631,102,37,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4618,102,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4619,102,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4659,103,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",4670,103,33,29]),types.vector(["bootstrap2011/bootstrap-teachpack",4733,104,33,134]),types.vector(["bootstrap2011/bootstrap-teachpack",4873,106,33,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4658,103,21,253])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4659,103,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4671,103,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",4682,103,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4670,103,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4671,103,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4683,103,46,12]),types.vector(["bootstrap2011/bootstrap-teachpack",4696,103,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4682,103,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4683,103,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4734,104,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4746,104,46,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4748,104,48,23]),types.vector(["bootstrap2011/bootstrap-teachpack",4772,104,72,23]),types.vector(["bootstrap2011/bootstrap-teachpack",4843,105,47,7]),types.vector(["bootstrap2011/bootstrap-teachpack",4851,105,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4733,104,33,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4734,104,34,11])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4749,104,49,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4751,104,51,3]),types.vector(["bootstrap2011/bootstrap-teachpack",4755,104,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4748,104,48,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4749,104,49,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4756,104,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4768,104,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4755,104,55,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4756,104,56,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4773,104,73,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4775,104,75,3]),types.vector(["bootstrap2011/bootstrap-teachpack",4779,104,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4772,104,72,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4773,104,73,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4780,104,80,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4792,104,92,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4779,104,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4780,104,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":9,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4851,105,55,15])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4874,106,34,12]),types.vector(["bootstrap2011/bootstrap-teachpack",4887,106,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4873,106,33,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4874,106,34,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4888,106,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",4901,106,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4887,106,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4888,106,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4934,108,22,12]),types.vector(["bootstrap2011/bootstrap-teachpack",4947,108,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4933,108,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4934,108,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4490,100,24,13]),types.vector(["bootstrap2011/bootstrap-teachpack",4504,100,38,15]),types.vector(["bootstrap2011/bootstrap-teachpack",4520,100,54,28]),types.vector(["bootstrap2011/bootstrap-teachpack",4559,101,38,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4489,100,23,103])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4490,100,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4505,100,39,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4517,100,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4504,100,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4505,100,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4560,101,39,14]),types.vector(["bootstrap2011/bootstrap-teachpack",4575,101,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4559,101,38,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4560,101,39,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4576,101,55,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4588,101,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4575,101,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4576,101,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5425,118,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5442,119,3,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5456,120,3,74]),types.vector(["bootstrap2011/bootstrap-teachpack",5544,121,3,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5551,122,3,74]),types.vector(["bootstrap2011/bootstrap-teachpack",5639,123,3,67]),types.vector(["bootstrap2011/bootstrap-teachpack",5719,124,3,41]),types.vector(["bootstrap2011/bootstrap-teachpack",5777,125,3,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5786,126,3,15]),types.vector(["bootstrap2011/bootstrap-teachpack",5805,127,3,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5441,119,2,367])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5442,119,3,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5457,120,4,4]),types.vector(["bootstrap2011/bootstrap-teachpack",5462,120,9,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5456,120,3,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5457,120,4,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5463,120,10,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5474,120,21,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5493,120,40,27]),types.vector(["bootstrap2011/bootstrap-teachpack",5521,120,68,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5462,120,9,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5463,120,10,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5475,120,22,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5485,120,32,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5489,120,36,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5474,120,21,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5475,120,22,9])},"rands":[{"$":"constant","value":500},{"$":"constant","value":50}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5494,120,41,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5503,120,50,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5506,120,53,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5514,120,61,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5493,120,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5494,120,41,8])},"rands":[{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"red"}]}}},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.EMPTY},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5552,122,4,4]),types.vector(["bootstrap2011/bootstrap-teachpack",5557,122,9,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5551,122,3,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5552,122,4,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5558,122,10,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5569,122,21,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5588,122,40,27]),types.vector(["bootstrap2011/bootstrap-teachpack",5616,122,68,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5557,122,9,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5558,122,10,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5570,122,22,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5580,122,32,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5584,122,36,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5569,122,21,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5570,122,22,9])},"rands":[{"$":"constant","value":100},{"$":"constant","value":50}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5589,122,41,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5596,122,48,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5599,122,51,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5607,122,59,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5588,122,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5589,122,41,6])},"rands":[{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"green"}]}}},{"$":"constant","value":"right"}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5640,123,4,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5651,123,15,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5670,123,34,32]),types.vector(["bootstrap2011/bootstrap-teachpack",5703,123,67,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5639,123,3,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5640,123,4,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5652,123,16,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5662,123,26,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5666,123,30,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5651,123,15,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5652,123,16,9])},"rands":[{"$":"constant","value":300},{"$":"constant","value":50}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5671,123,35,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5681,123,45,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5684,123,48,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5687,123,51,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5695,123,59,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5670,123,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5671,123,35,9])},"rands":[{"$":"constant","value":30},{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5720,124,4,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5730,124,14,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5736,124,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5743,124,27,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5751,124,35,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5719,124,3,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5720,124,4,9])},"rands":[{"$":"toplevel","depth":12,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5730,124,14,5])},{"$":"toplevel","depth":12,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5736,124,20,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"yellow"}]}}},{"$":"constant","value":34075},{"$":"constant","value":"I am a Title!"},{"$":"constant","value":17}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5979,132,9,15])}],"body":{"$":"lam","name":types.symbol("check-collision"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",5979,132,9,15]),types.vector(["bootstrap2011/bootstrap-teachpack",5995,132,25,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6002,132,32,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6009,132,39,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6022,133,3,3]),types.vector(["bootstrap2011/bootstrap-teachpack",6026,133,7,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6021,133,2,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6022,133,3,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6027,133,8,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6034,133,15,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6026,133,7,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":170,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6027,133,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6035,133,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6042,133,23,40]),types.vector(["bootstrap2011/bootstrap-teachpack",6092,134,23,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6034,133,15,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6035,133,16,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",6043,133,24,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6051,133,32,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6059,133,40,8]),types.vector(["bootstrap2011/bootstrap-teachpack",6068,133,49,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6075,133,56,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6058,133,39,23])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7026,152,9,16])}],"body":{"$":"lam","name":types.symbol("survival-checker"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7026,152,9,16]),types.vector(["bootstrap2011/bootstrap-teachpack",7043,152,26,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7053,152,36,8]),types.vector(["bootstrap2011/bootstrap-teachpack",7062,152,45,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7073,153,3,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7081,153,11,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7093,154,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7098,154,10,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7108,154,20,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7124,154,36,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7109,154,21,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7117,154,29,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7108,154,20,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7109,154,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7125,154,37,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7133,154,45,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7124,154,36,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7125,154,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7093,154,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7151,155,10,3]),types.vector(["bootstrap2011/bootstrap-teachpack",7155,155,14,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7151,155,10,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7156,155,15,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7172,155,31,5]),types.vector(["bootstrap2011/bootstrap-teachpack",7178,155,37,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7185,155,44,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7155,155,14,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7156,155,15,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])}]}}},"else":{"$":"constant","value":false}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7372,159,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7372,159,9,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7384,159,21,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7401,161,6,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7403,161,8,19]),types.vector(["bootstrap2011/bootstrap-teachpack",7423,161,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7401,161,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7404,161,9,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7420,161,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7403,161,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7404,161,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7432,162,6,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7440,162,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7444,162,18,10]),types.vector(["bootstrap2011/bootstrap-teachpack",7455,162,29,39]),types.vector(["bootstrap2011/bootstrap-teachpack",7504,163,29,17]),types.vector(["bootstrap2011/bootstrap-teachpack",7522,163,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7443,162,17,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7444,162,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7456,162,30,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7466,162,40,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7482,162,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7455,162,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7456,162,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7467,162,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7469,162,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7466,162,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7470,162,44,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7478,162,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7469,162,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7470,162,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7483,162,57,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7491,162,65,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7482,162,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7483,162,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7505,163,30,13]),types.vector(["bootstrap2011/bootstrap-teachpack",7519,163,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7504,163,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7505,163,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7523,163,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",7536,163,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7522,163,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7523,163,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7548,164,6,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7550,164,8,19]),types.vector(["bootstrap2011/bootstrap-teachpack",7570,164,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7548,164,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7551,164,9,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7567,164,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7550,164,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7551,164,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7579,165,6,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7587,165,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7591,165,18,10]),types.vector(["bootstrap2011/bootstrap-teachpack",7602,165,29,27]),types.vector(["bootstrap2011/bootstrap-teachpack",7639,166,29,17]),types.vector(["bootstrap2011/bootstrap-teachpack",7657,166,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7590,165,17,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7591,165,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7603,165,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7605,165,32,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7617,165,44,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7602,165,29,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7606,165,33,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7614,165,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7605,165,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7606,165,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7618,165,45,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7626,165,53,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7617,165,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7618,165,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7640,166,30,13]),types.vector(["bootstrap2011/bootstrap-teachpack",7654,166,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7639,166,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7640,166,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7658,166,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",7671,166,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7657,166,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7658,166,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7683,167,6,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7685,167,8,19]),types.vector(["bootstrap2011/bootstrap-teachpack",7705,167,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7683,167,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7686,167,9,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7702,167,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7685,167,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7686,167,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":3}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7714,168,6,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7722,168,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7726,168,18,10]),types.vector(["bootstrap2011/bootstrap-teachpack",7737,168,29,44]),types.vector(["bootstrap2011/bootstrap-teachpack",7790,169,29,17]),types.vector(["bootstrap2011/bootstrap-teachpack",7808,169,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7725,168,17,100])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7726,168,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7738,168,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7740,168,32,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7752,168,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7764,168,56,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7737,168,29,44])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7741,168,33,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7749,168,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7740,168,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7741,168,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7753,168,45,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7761,168,53,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7752,168,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7753,168,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7765,168,57,12]),types.vector(["bootstrap2011/bootstrap-teachpack",7778,168,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7764,168,56,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7765,168,57,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7791,169,30,13]),types.vector(["bootstrap2011/bootstrap-teachpack",7805,169,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7790,169,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7791,169,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7809,169,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",7822,169,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7808,169,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7809,169,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439]),types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7840,171,9,11])}],"body":{"$":"lam","name":types.symbol("random-posn"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7840,171,9,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7852,171,21,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7862,172,2,1608]),types.vector(["bootstrap2011/bootstrap-teachpack",7871,172,11,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7886,173,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7862,172,2,1608])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7862,172,2,1608]),types.vector(["bootstrap2011/bootstrap-teachpack",7869,172,9,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7884,173,9,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7919,175,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",7928,175,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7935,175,23,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7919,175,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7951,176,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7961,176,17,8]),types.vector(["bootstrap2011/bootstrap-teachpack",7970,176,26,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7950,176,6,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7951,176,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7962,176,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7964,176,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7966,176,22,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7961,176,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7962,176,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7971,176,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7978,176,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7970,176,26,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7971,176,27,6])},"rands":[{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7978,176,34,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7995,177,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8004,177,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8011,177,23,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7995,177,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8028,178,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8038,178,17,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8050,178,29,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8027,178,6,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8028,178,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8039,178,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8041,178,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8043,178,22,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8038,178,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8039,178,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8043,178,22,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8051,178,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8058,178,37,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8050,178,29,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8051,178,30,6])},"rands":[{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8058,178,37,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8075,179,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8084,179,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8091,179,23,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8075,179,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8106,180,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8116,180,17,14]),types.vector(["bootstrap2011/bootstrap-teachpack",8131,180,32,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8105,180,6,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8106,180,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8117,180,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8124,180,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8116,180,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8117,180,18,6])},"rands":[{"$":"toplevel","depth":3,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8124,180,25,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8132,180,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8134,180,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8136,180,37,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8131,180,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8132,180,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8136,180,37,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8153,181,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8162,181,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8169,181,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8153,181,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8187,182,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8197,182,17,14]),types.vector(["bootstrap2011/bootstrap-teachpack",8212,182,32,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8186,182,6,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8187,182,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8198,182,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8205,182,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8197,182,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8198,182,18,6])},"rands":[{"$":"toplevel","depth":3,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8205,182,25,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8213,182,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8215,182,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8217,182,37,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8212,182,32,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8213,182,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8230,183,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8239,183,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8246,183,23,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8230,183,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom-left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8269,184,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8282,185,7,129])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8268,184,6,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8269,184,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8283,185,8,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8290,186,8,71]),types.vector(["bootstrap2011/bootstrap-teachpack",8363,187,8,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8282,185,7,129])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8283,185,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8291,186,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8301,186,19,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8331,186,49,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8290,186,8,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8291,186,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8302,186,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8304,186,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8301,186,19,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8302,186,20,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8332,186,50,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8339,186,57,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8331,186,49,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8332,186,50,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8340,186,58,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8346,186,64,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8339,186,57,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8340,186,58,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8347,186,65,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8349,186,67,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8351,186,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8346,186,64,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8347,186,65,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8351,186,69,6])}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8364,187,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8374,187,19,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8404,187,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8363,187,8,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8364,187,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8375,187,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8382,187,27,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8374,187,19,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8375,187,20,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8383,187,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8389,187,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8382,187,27,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8383,187,28,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8390,187,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8392,187,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8394,187,39,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8389,187,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8390,187,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8394,187,39,5])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8405,187,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8407,187,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8404,187,49,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8405,187,50,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8421,188,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8430,188,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8437,188,23,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8421,188,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom-right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8460,189,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8472,190,7,125])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8459,189,6,139])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8460,189,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8473,190,8,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8479,191,8,47]),types.vector(["bootstrap2011/bootstrap-teachpack",8528,192,8,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8472,190,7,125])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8473,190,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8480,191,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8490,191,19,21]),types.vector(["bootstrap2011/bootstrap-teachpack",8520,191,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8479,191,8,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8480,191,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8491,191,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8493,191,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8499,191,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8490,191,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8491,191,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8493,191,22,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8500,191,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8502,191,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8504,191,33,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8499,191,28,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8500,191,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8504,191,33,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8521,191,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8523,191,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8520,191,49,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8521,191,50,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8529,192,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8539,192,19,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8566,192,46,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8528,192,8,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8529,192,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8540,192,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8542,192,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8548,192,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8539,192,19,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8540,192,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8542,192,22,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8567,192,47,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8574,192,54,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8566,192,46,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8567,192,47,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8575,192,55,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8581,192,61,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8574,192,54,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8575,192,55,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8582,192,62,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8584,192,64,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8586,192,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8581,192,61,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8582,192,62,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8586,192,66,6])}]}}}]}}}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8607,193,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8616,193,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8623,193,23,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8607,193,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top-left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8642,194,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8654,195,7,129])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8641,194,6,143])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8642,194,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8655,195,8,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8661,196,8,65]),types.vector(["bootstrap2011/bootstrap-teachpack",8728,197,8,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8654,195,7,129])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8655,195,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8662,196,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8672,196,19,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8702,196,49,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8661,196,8,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8662,196,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8673,196,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8675,196,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8672,196,19,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8673,196,20,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8703,196,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8705,196,52,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8712,196,59,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8702,196,49,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8703,196,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8705,196,52,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8713,196,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8715,196,62,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8717,196,64,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8712,196,59,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8713,196,60,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8717,196,64,6])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8729,197,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8739,197,19,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8769,197,49,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8728,197,8,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8729,197,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8740,197,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8747,197,27,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8739,197,19,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8740,197,20,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8748,197,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8754,197,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8747,197,27,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8748,197,28,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8755,197,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8757,197,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8759,197,39,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8754,197,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8755,197,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8759,197,39,5])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8770,197,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8772,197,52,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8779,197,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8769,197,49,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8770,197,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8772,197,52,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8793,198,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8802,198,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8809,198,23,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8793,198,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top-right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8829,199,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8842,200,7,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8828,199,6,145])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8829,199,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8843,200,8,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8850,201,8,54]),types.vector(["bootstrap2011/bootstrap-teachpack",8906,202,8,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8842,200,7,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8843,200,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8851,201,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8861,201,19,21]),types.vector(["bootstrap2011/bootstrap-teachpack",8891,201,49,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8850,201,8,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8851,201,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8862,201,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8864,201,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8870,201,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8861,201,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8862,201,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8864,201,22,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8871,201,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8873,201,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8875,201,33,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8870,201,28,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8871,201,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8875,201,33,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8892,201,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8894,201,52,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8901,201,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8891,201,49,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8892,201,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8894,201,52,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8907,202,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8917,202,19,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8947,202,49,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8906,202,8,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8907,202,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8918,202,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8920,202,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8926,202,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8917,202,19,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8918,202,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8920,202,22,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8948,202,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8950,202,52,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8957,202,59,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8947,202,49,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8948,202,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8950,202,52,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8958,202,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8960,202,62,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8962,202,64,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8957,202,59,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8958,202,60,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8962,202,64,6])}]}}}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8982,203,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8991,203,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8998,203,23,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8982,203,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"onscreen"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9017,204,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9027,204,17,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9063,205,17,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9016,204,6,81])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9017,204,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9028,204,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9030,204,20,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9038,204,28,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9027,204,17,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9028,204,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9031,204,21,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9033,204,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9035,204,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9030,204,20,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9031,204,21,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9039,204,29,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9046,204,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9038,204,28,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9039,204,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9047,204,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9049,204,39,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9055,204,45,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9046,204,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9047,204,37,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9049,204,39,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9064,205,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9066,205,20,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9074,205,28,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9063,205,17,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9064,205,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9067,205,21,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9069,205,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9071,205,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9066,205,20,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9067,205,21,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9075,205,29,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9082,205,36,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9074,205,28,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9075,205,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9083,205,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9085,205,39,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9092,205,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9082,205,36,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9083,205,37,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9085,205,39,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9106,206,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",9115,206,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9122,206,23,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9106,206,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"screen-left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9144,207,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9154,207,17,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9168,207,31,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9143,207,6,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9144,207,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9155,207,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9157,207,20,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9163,207,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9154,207,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9155,207,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9157,207,20,5])},{"$":"constant","value":types.rational(1, 4)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9169,207,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9171,207,34,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9179,207,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9168,207,31,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9169,207,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9172,207,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9174,207,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9176,207,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9171,207,34,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9172,207,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9180,207,43,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9187,207,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9179,207,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9180,207,43,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9188,207,51,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9190,207,53,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9197,207,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9187,207,50,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9188,207,51,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9190,207,53,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9211,208,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",9220,208,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9227,208,23,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9211,208,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"screen-right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9250,209,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9260,209,17,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9274,209,31,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9249,209,6,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9250,209,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9261,209,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9263,209,20,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9269,209,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9260,209,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9261,209,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9263,209,20,5])},{"$":"constant","value":types.rational(3, 4)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9275,209,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9277,209,34,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9285,209,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9274,209,31,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9275,209,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9278,209,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9280,209,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9282,209,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9277,209,34,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9278,209,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9286,209,43,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9293,209,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9285,209,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9286,209,43,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9294,209,51,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9296,209,53,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9303,209,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9293,209,50,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9294,209,51,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9296,209,53,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9317,210,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",9326,210,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9333,210,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9317,210,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"center"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9350,211,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9360,211,17,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9374,211,31,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9349,211,6,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9350,211,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9361,211,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9363,211,20,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9369,211,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9360,211,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9361,211,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9363,211,20,5])},{"$":"constant","value":types.rational(1, 2)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9375,211,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9377,211,34,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9384,211,41,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9374,211,31,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9375,211,32,1])},"rands":[{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9377,211,34,6])},{"$":"constant","value":types.rational(1, 2)}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"toplevel","depth":4,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9403,212,12,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9409,212,18,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9402,212,11,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9403,212,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9410,212,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9417,212,26,35]),types.vector(["bootstrap2011/bootstrap-teachpack",9453,212,62,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9409,212,18,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":164,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9410,212,19,6])},"rands":[{"$":"constant","value":"don't know what position ~a means"},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563]),types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])}]}}}}}}}}}}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7872,172,12,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7871,172,11,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7872,172,12,7])},"rands":[]}}},{"$":"constant","value":types.rational(1, 3)}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9519,216,9,13])}],"body":{"$":"lam","name":types.symbol("get-direction"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",9519,216,9,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9533,216,23,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9551,217,9,69]),types.vector(["bootstrap2011/bootstrap-teachpack",9562,217,20,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9551,217,9,69])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",9551,217,9,69]),types.vector(["bootstrap2011/bootstrap-teachpack",9552,217,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9630,218,9,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9638,218,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9630,218,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",9630,218,9,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9631,218,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9673,219,9,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9681,219,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9673,219,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",9673,219,9,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9674,219,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9713,220,5,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9717,220,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9722,220,14,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9724,220,16,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9726,220,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9722,220,14,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9717,220,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9735,220,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9737,220,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9739,220,31,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9735,220,27,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31])}]}}},"then":{"$":"constant","value":"onscreen"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9776,222,9,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9780,222,13,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9782,222,15,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9795,222,28,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9780,222,13,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9783,222,16,3]),types.vector(["bootstrap2011/bootstrap-teachpack",9787,222,20,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9782,222,15,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9783,222,16,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9796,222,29,3]),types.vector(["bootstrap2011/bootstrap-teachpack",9800,222,33,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9795,222,28,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9796,222,29,3])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9822,223,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9826,223,17,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9828,223,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9835,223,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9826,223,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])}]}}},"then":{"$":"constant","value":"top"},"else":{"$":"constant","value":"bottom"}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9867,224,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9871,224,17,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9873,224,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9880,224,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9871,224,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])}]}}},"then":{"$":"constant","value":"right"},"else":{"$":"constant","value":"left"}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9682,219,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9684,219,20,18]),types.vector(["bootstrap2011/bootstrap-teachpack",9703,219,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9681,219,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9682,219,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9685,219,21,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9692,219,28,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9684,219,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9685,219,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9639,218,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9641,218,20,18]),types.vector(["bootstrap2011/bootstrap-teachpack",9660,218,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9638,218,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9639,218,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9642,218,21,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9649,218,28,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9641,218,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9642,218,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9563,217,21,10]),types.vector(["bootstrap2011/bootstrap-teachpack",9574,217,32,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9562,217,20,57])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9563,217,21,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9575,217,33,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9583,217,41,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9574,217,32,44])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9584,217,42,10]),types.vector(["bootstrap2011/bootstrap-teachpack",9595,217,53,15]),types.vector(["bootstrap2011/bootstrap-teachpack",9611,217,69,2]),types.vector(["bootstrap2011/bootstrap-teachpack",9614,217,72,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9583,217,41,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9584,217,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9596,217,54,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9606,217,64,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9608,217,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9595,217,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9596,217,54,9])},"rands":[{"$":"constant","value":1},{"$":"constant","value":1}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10036,229,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10036,229,9,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10042,229,15,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10048,229,21,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10061,230,2,312]),types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10061,230,2,312])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10061,230,2,312]),types.vector(["bootstrap2011/bootstrap-teachpack",10068,230,9,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10311,236,5,10]),types.vector(["bootstrap2011/bootstrap-teachpack",10322,236,16,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10343,236,37,21]),types.vector(["bootstrap2011/bootstrap-teachpack",10365,236,59,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10310,236,4,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10311,236,5,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10323,236,17,11]),types.vector(["bootstrap2011/bootstrap-teachpack",10335,236,29,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10322,236,16,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10323,236,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10344,236,38,13]),types.vector(["bootstrap2011/bootstrap-teachpack",10358,236,52,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10343,236,37,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10344,236,38,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10104,232,13,10]),types.vector(["bootstrap2011/bootstrap-teachpack",10115,232,24,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10104,232,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10125,232,34,13]),types.vector(["bootstrap2011/bootstrap-teachpack",10139,232,48,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10124,232,33,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10125,232,34,13])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10162,233,13,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10168,233,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10162,233,13,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10183,233,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10188,233,39,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10182,233,33,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10183,233,34,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10211,234,13,7]),types.vector(["bootstrap2011/bootstrap-teachpack",10219,234,21,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10211,234,13,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},{"$":"toplevel","depth":5,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10258,235,18,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10264,235,24,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10257,235,17,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10258,235,18,5])},"rands":[{"$":"constant","value":"strange being source specification"}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219]),types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])}]}}}}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10538,240,9,8])}],"body":{"$":"lam","name":types.symbol("move-all"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10538,240,9,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10547,240,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",10554,240,25,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10559,240,30,10])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10574,241,3,3]),types.vector(["bootstrap2011/bootstrap-teachpack",10578,241,7,73]),types.vector(["bootstrap2011/bootstrap-teachpack",10660,245,7,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10573,241,2,94])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10574,241,3,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10579,241,8,6]),types.vector(["bootstrap2011/bootstrap-teachpack",10587,241,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10594,242,10,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10598,242,14,10]),types.vector(["bootstrap2011/bootstrap-teachpack",10609,242,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10620,243,14,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10625,243,19,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10619,243,13,8])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10636,244,14,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10642,244,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",10644,244,22,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10635,244,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10636,244,14,5])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10900,250,9,8])}],"body":{"$":"lam","name":types.symbol("keypress"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10900,250,9,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10909,250,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",10911,250,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",10915,250,24,13]),types.vector(["bootstrap2011/bootstrap-teachpack",10929,250,38,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10954,252,6,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10963,252,15,3]),types.vector(["bootstrap2011/bootstrap-teachpack",10967,252,19,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10954,252,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"release"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10987,253,6,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10996,253,15,3]),types.vector(["bootstrap2011/bootstrap-teachpack",11000,253,19,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10987,253,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"escape"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11011,253,30,16]),types.vector(["bootstrap2011/bootstrap-teachpack",11028,253,47,1]),types.vector(["bootstrap2011/bootstrap-teachpack",11030,253,49,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11010,253,29,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11011,253,30,16])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11041,254,6,8]),types.vector(["bootstrap2011/bootstrap-teachpack",11050,254,15,3]),types.vector(["bootstrap2011/bootstrap-teachpack",11054,254,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11041,254,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11060,254,25,16]),types.vector(["bootstrap2011/bootstrap-teachpack",11077,254,42,1]),types.vector(["bootstrap2011/bootstrap-teachpack",11079,254,44,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11059,254,24,57])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11060,254,25,16])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11080,254,45,6]),types.vector(["bootstrap2011/bootstrap-teachpack",11087,254,52,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11099,254,64,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11079,254,44,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11080,254,45,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11088,254,53,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11087,254,52,11])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11100,254,65,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11112,254,77,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11099,254,64,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11100,254,65,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},{"$":"toplevel","depth":4,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11130,255,11,17]),types.vector(["bootstrap2011/bootstrap-teachpack",11148,255,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",11150,255,31,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11129,255,10,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11130,255,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11151,255,32,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11165,255,46,16]),types.vector(["bootstrap2011/bootstrap-teachpack",11182,255,63,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11150,255,31,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11166,255,47,12]),types.vector(["bootstrap2011/bootstrap-teachpack",11179,255,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11165,255,46,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11166,255,47,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247]),types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])}]}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11201,257,9,9])}],"body":{"$":"lam","name":types.symbol("make-game"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",11201,257,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",11211,257,19,5]),types.vector(["bootstrap2011/bootstrap-teachpack",11217,257,25,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11229,257,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11240,257,48,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11251,257,59,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11265,257,73,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11276,257,84,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11290,257,98,9]),types.vector(["bootstrap2011/bootstrap-teachpack",11300,257,108,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11314,257,122,14]),types.vector(["bootstrap2011/bootstrap-teachpack",11329,257,137,17]),types.vector(["bootstrap2011/bootstrap-teachpack",11347,257,155,15]),types.vector(["bootstrap2011/bootstrap-teachpack",11363,257,171,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11375,257,183,8]),types.vector(["bootstrap2011/bootstrap-teachpack",11384,257,192,7]),types.vector(["bootstrap2011/bootstrap-teachpack",11392,257,200,8])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11405,258,3,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11410,258,8,5]),types.vector(["bootstrap2011/bootstrap-teachpack",11416,258,14,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11428,258,26,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11439,258,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11450,258,48,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11464,258,62,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11475,258,73,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11489,258,87,9]),types.vector(["bootstrap2011/bootstrap-teachpack",11499,258,97,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11513,258,111,14]),types.vector(["bootstrap2011/bootstrap-teachpack",11528,258,126,17]),types.vector(["bootstrap2011/bootstrap-teachpack",11546,258,144,15]),types.vector(["bootstrap2011/bootstrap-teachpack",11562,258,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11574,258,172,8]),types.vector(["bootstrap2011/bootstrap-teachpack",11583,258,181,7]),types.vector(["bootstrap2011/bootstrap-teachpack",11591,258,189,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11404,258,2,196])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11405,258,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11611,259,9,4])}],"body":{"$":"lam","name":types.symbol("play"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",11611,259,9,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11616,259,14,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11625,260,3,5]),types.vector(["bootstrap2011/bootstrap-teachpack",11631,260,9,12]),types.vector(["bootstrap2011/bootstrap-teachpack",11644,260,22,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11624,260,2,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":180,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11625,260,3,5])},"rands":[{"$":"toplevel","depth":2,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11631,260,9,12])},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11953,266,9,12])}],"body":{"$":"lam","name":types.symbol("animate/proc"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",11953,266,9,12]),types.vector(["bootstrap2011/bootstrap-teachpack",11966,266,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",11972,266,28,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12006,267,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12026,268,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12040,268,36,14]),types.vector(["bootstrap2011/bootstrap-teachpack",12063,269,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12077,269,36,14]),types.vector(["bootstrap2011/bootstrap-teachpack",12100,270,22,9]),types.vector(["bootstrap2011/bootstrap-teachpack",12114,270,36,14]),types.vector(["bootstrap2011/bootstrap-teachpack",12151,271,22,13]),types.vector(["bootstrap2011/bootstrap-teachpack",12165,271,36,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12206,272,22,15]),types.vector(["bootstrap2011/bootstrap-teachpack",12222,272,38,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12234,272,50,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12265,273,22,9]),types.vector(["bootstrap2011/bootstrap-teachpack",12275,273,32,10])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12301,275,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12310,275,14,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12322,275,26,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12300,275,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12301,275,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12310,275,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12340,276,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12349,276,14,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12360,276,25,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12339,276,4,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12340,276,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12349,276,14,10])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12377,277,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12386,277,14,13]),types.vector(["bootstrap2011/bootstrap-teachpack",12400,277,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12376,277,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12377,277,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12386,277,14,13])},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12418,278,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12427,278,14,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12438,278,25,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12417,278,4,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12418,278,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12427,278,14,10])},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12453,279,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12462,279,14,17]),types.vector(["bootstrap2011/bootstrap-teachpack",12480,279,32,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12452,279,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12453,279,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12462,279,14,17])},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12508,280,11,88]),types.vector(["bootstrap2011/bootstrap-teachpack",12516,280,19,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12508,280,11,88])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12508,280,11,88]),types.vector(["bootstrap2011/bootstrap-teachpack",12509,280,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,10,11,12,16,17],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12608,282,11,65]),types.vector(["bootstrap2011/bootstrap-teachpack",12620,282,23,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12608,282,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12608,282,11,65]),types.vector(["bootstrap2011/bootstrap-teachpack",12609,282,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12685,283,11,65]),types.vector(["bootstrap2011/bootstrap-teachpack",12697,283,23,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12685,283,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12685,283,11,65]),types.vector(["bootstrap2011/bootstrap-teachpack",12686,283,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12755,284,11,122]),types.vector(["bootstrap2011/bootstrap-teachpack",12780,285,12,96])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12755,284,11,122])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12755,284,11,122]),types.vector(["bootstrap2011/bootstrap-teachpack",12756,284,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12889,287,11,121]),types.vector(["bootstrap2011/bootstrap-teachpack",12914,288,12,95])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12889,287,11,121])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12889,287,11,121]),types.vector(["bootstrap2011/bootstrap-teachpack",12890,287,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13022,290,11,44]),types.vector(["bootstrap2011/bootstrap-teachpack",13037,290,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13022,290,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13022,290,11,44]),types.vector(["bootstrap2011/bootstrap-teachpack",13023,290,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13078,291,11,44]),types.vector(["bootstrap2011/bootstrap-teachpack",13093,291,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13078,291,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13078,291,11,44]),types.vector(["bootstrap2011/bootstrap-teachpack",13079,291,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13134,292,11,52]),types.vector(["bootstrap2011/bootstrap-teachpack",13153,292,30,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13134,292,11,52])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13134,292,11,52]),types.vector(["bootstrap2011/bootstrap-teachpack",13135,292,12,17])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13198,293,11,257]),types.vector(["bootstrap2011/bootstrap-teachpack",13207,293,20,247])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13198,293,11,257])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13198,293,11,257]),types.vector(["bootstrap2011/bootstrap-teachpack",13199,293,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,13,14,15,16],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13467,297,11,257]),types.vector(["bootstrap2011/bootstrap-teachpack",13476,297,20,247])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13467,297,11,257])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13467,297,11,257]),types.vector(["bootstrap2011/bootstrap-teachpack",13468,297,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13736,301,11,17]),types.vector(["bootstrap2011/bootstrap-teachpack",13749,301,24,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13736,301,11,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13736,301,11,17]),types.vector(["bootstrap2011/bootstrap-teachpack",13737,301,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13765,302,11,417]),types.vector(["bootstrap2011/bootstrap-teachpack",13780,302,26,401])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13765,302,11,417])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13765,302,11,417]),types.vector(["bootstrap2011/bootstrap-teachpack",13766,302,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14194,309,11,125]),types.vector(["bootstrap2011/bootstrap-teachpack",14205,309,22,113])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14194,309,11,125])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14194,309,11,125]),types.vector(["bootstrap2011/bootstrap-teachpack",14195,309,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,8,9,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14331,312,11,108]),types.vector(["bootstrap2011/bootstrap-teachpack",14341,312,21,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14331,312,11,108])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14331,312,11,108]),types.vector(["bootstrap2011/bootstrap-teachpack",14332,312,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14451,315,11,215]),types.vector(["bootstrap2011/bootstrap-teachpack",14458,315,18,207])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14451,315,11,215])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14451,315,11,215]),types.vector(["bootstrap2011/bootstrap-teachpack",14452,315,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,7,8,9,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14678,320,11,542]),types.vector(["bootstrap2011/bootstrap-teachpack",14689,320,22,530])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14678,320,11,542])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14678,320,11,542]),types.vector(["bootstrap2011/bootstrap-teachpack",14679,320,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15232,326,11,2741]),types.vector(["bootstrap2011/bootstrap-teachpack",15246,326,25,2726])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15232,326,11,2741])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15232,326,11,2741]),types.vector(["bootstrap2011/bootstrap-teachpack",15233,326,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17982,368,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",17991,368,16,5]),types.vector(["bootstrap2011/bootstrap-teachpack",18013,369,16,47]),types.vector(["bootstrap2011/bootstrap-teachpack",18077,370,16,25]),types.vector(["bootstrap2011/bootstrap-teachpack",18119,371,16,22]),types.vector(["bootstrap2011/bootstrap-teachpack",18158,372,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17981,368,6,196])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17982,368,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18014,369,17,9]),types.vector(["bootstrap2011/bootstrap-teachpack",18024,369,27,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18013,369,16,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18014,369,17,9])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",18025,369,28,6]),types.vector(["bootstrap2011/bootstrap-teachpack",18033,369,36,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18037,369,40,1]),types.vector(["bootstrap2011/bootstrap-teachpack",18039,369,42,15]),types.vector(["bootstrap2011/bootstrap-teachpack",18055,369,58,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18036,369,39,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18037,369,40,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18040,369,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18052,369,55,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18039,369,42,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18040,369,43,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":-1}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18078,370,17,7]),types.vector(["bootstrap2011/bootstrap-teachpack",18086,370,25,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18099,370,38,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18077,370,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18078,370,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18120,371,17,9]),types.vector(["bootstrap2011/bootstrap-teachpack",18130,371,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18119,371,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18120,371,17,9])},"rands":[{"$":"toplevel","depth":6,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18130,371,27,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18159,372,17,6]),types.vector(["bootstrap2011/bootstrap-teachpack",18166,372,24,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18158,372,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18159,372,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15247,326,26,6]),types.vector(["bootstrap2011/bootstrap-teachpack",15255,326,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15324,328,30,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15333,328,39,7]),types.vector(["bootstrap2011/bootstrap-teachpack",15341,328,47,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15323,328,29,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15324,328,30,8])},"rands":[{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15333,328,39,7])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15342,328,48,11]),types.vector(["bootstrap2011/bootstrap-teachpack",15354,328,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15341,328,47,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15342,328,48,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15394,329,36,163]),types.vector(["bootstrap2011/bootstrap-teachpack",15412,330,37,144])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15394,329,36,163])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15394,329,36,163]),types.vector(["bootstrap2011/bootstrap-teachpack",15395,329,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15594,332,36,422]),types.vector(["bootstrap2011/bootstrap-teachpack",15644,333,37,371])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15594,332,36,422])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15594,332,36,422]),types.vector(["bootstrap2011/bootstrap-teachpack",15595,332,37,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16053,338,36,163]),types.vector(["bootstrap2011/bootstrap-teachpack",16071,339,37,144])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16053,338,36,163])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16053,338,36,163]),types.vector(["bootstrap2011/bootstrap-teachpack",16054,338,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16253,341,36,485]),types.vector(["bootstrap2011/bootstrap-teachpack",16260,341,43,477])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16253,341,36,485])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16253,341,36,485]),types.vector(["bootstrap2011/bootstrap-teachpack",16254,341,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16775,347,36,25]),types.vector(["bootstrap2011/bootstrap-teachpack",16783,347,44,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16775,347,36,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16775,347,36,25]),types.vector(["bootstrap2011/bootstrap-teachpack",16776,347,37,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16837,348,36,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16841,348,40,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16837,348,36,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16837,348,36,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16838,348,37,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16891,349,36,23]),types.vector(["bootstrap2011/bootstrap-teachpack",16898,349,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16891,349,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16891,349,36,23]),types.vector(["bootstrap2011/bootstrap-teachpack",16892,349,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16951,350,36,23]),types.vector(["bootstrap2011/bootstrap-teachpack",16958,350,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16951,350,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16951,350,36,23]),types.vector(["bootstrap2011/bootstrap-teachpack",16952,350,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17048,352,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17050,352,37,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17056,352,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17048,352,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17094,353,35,10]),types.vector(["bootstrap2011/bootstrap-teachpack",17105,353,46,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17113,353,54,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17125,353,66,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17133,353,74,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17140,353,81,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17155,354,46,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17161,354,52,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17167,354,58,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17093,353,34,87])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17094,353,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17168,354,59,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17170,354,61,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17176,354,67,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17167,354,58,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17168,354,59,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17217,355,35,15]),types.vector(["bootstrap2011/bootstrap-teachpack",17233,355,51,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17240,355,58,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17248,355,66,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17217,355,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17402,358,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",17413,358,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17421,358,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17433,358,68,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17441,358,76,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17448,358,83,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17458,359,48,28]),types.vector(["bootstrap2011/bootstrap-teachpack",17487,359,77,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17493,359,83,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17401,358,36,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17402,358,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17459,359,49,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17461,359,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17467,359,57,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17458,359,48,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17459,359,49,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17467,359,57,18])}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17535,360,35,15]),types.vector(["bootstrap2011/bootstrap-teachpack",17551,360,51,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17558,360,58,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17566,360,66,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17535,360,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17722,363,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",17733,363,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17741,363,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17753,363,68,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17761,363,76,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17768,363,83,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17778,364,48,28]),types.vector(["bootstrap2011/bootstrap-teachpack",17807,364,77,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17813,364,83,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17721,363,36,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17722,363,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17779,364,49,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17781,364,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17787,364,57,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17778,364,48,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17779,364,49,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17787,364,57,18])}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},{"$":"toplevel","depth":4,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17860,365,40,10]),types.vector(["bootstrap2011/bootstrap-teachpack",17871,365,51,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17879,365,59,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17891,365,71,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17899,365,79,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17906,365,86,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17919,366,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17925,366,57,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17931,366,63,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17859,365,39,78])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17860,365,40,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932]),types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])}]}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16959,350,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16971,350,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16958,350,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16959,350,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16899,349,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16911,349,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16898,349,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16899,349,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16842,348,41,8]),types.vector(["bootstrap2011/bootstrap-teachpack",16851,348,50,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16841,348,40,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16842,348,41,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16784,347,45,12]),types.vector(["bootstrap2011/bootstrap-teachpack",16797,347,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16783,347,44,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16784,347,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16261,341,44,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16263,341,46,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16325,342,46,159]),types.vector(["bootstrap2011/bootstrap-teachpack",16531,344,46,158])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16260,341,43,477])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16261,341,44,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16264,341,47,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16276,341,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16263,341,46,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16264,341,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16326,342,47,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16330,342,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",16336,342,57,59]),types.vector(["bootstrap2011/bootstrap-teachpack",16396,342,117,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16330,342,51,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16337,342,58,6]),types.vector(["bootstrap2011/bootstrap-teachpack",16345,342,66,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16349,342,70,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16365,342,86,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16367,342,88,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16385,342,106,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16348,342,69,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16349,342,70,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16368,342,89,13]),types.vector(["bootstrap2011/bootstrap-teachpack",16382,342,103,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16367,342,88,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16368,342,89,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16397,342,118,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16409,342,130,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16396,342,117,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16397,342,118,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])}]}}},"then":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16463,343,50,18])},"else":{"$":"constant","value":0}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16532,344,47,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16536,344,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",16542,344,57,58]),types.vector(["bootstrap2011/bootstrap-teachpack",16601,344,116,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16536,344,51,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16543,344,58,6]),types.vector(["bootstrap2011/bootstrap-teachpack",16550,344,65,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16554,344,69,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16570,344,85,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16572,344,87,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16590,344,105,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16553,344,68,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16554,344,69,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16573,344,88,13]),types.vector(["bootstrap2011/bootstrap-teachpack",16587,344,102,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16572,344,87,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16573,344,88,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16602,344,117,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16614,344,129,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16601,344,116,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16602,344,117,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])}]}}},"then":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16668,345,50,18])},"else":{"$":"constant","value":0}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16072,339,38,8]),types.vector(["bootstrap2011/bootstrap-teachpack",16081,339,47,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16099,339,65,13]),types.vector(["bootstrap2011/bootstrap-teachpack",16161,340,47,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16071,339,37,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16072,339,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16082,339,48,13]),types.vector(["bootstrap2011/bootstrap-teachpack",16096,339,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16081,339,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16082,339,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16162,340,48,16]),types.vector(["bootstrap2011/bootstrap-teachpack",16179,340,65,9]),types.vector(["bootstrap2011/bootstrap-teachpack",16189,340,75,8]),types.vector(["bootstrap2011/bootstrap-teachpack",16198,340,84,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16161,340,47,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16162,340,48,16])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16199,340,85,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16211,340,97,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16198,340,84,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16199,340,85,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15645,333,38,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15654,333,47,277]),types.vector(["bootstrap2011/bootstrap-teachpack",15979,337,47,17]),types.vector(["bootstrap2011/bootstrap-teachpack",15997,337,65,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15644,333,37,371])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15645,333,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15655,333,48,6]),types.vector(["bootstrap2011/bootstrap-teachpack",15662,333,55,196]),types.vector(["bootstrap2011/bootstrap-teachpack",15915,336,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15654,333,47,277])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15655,333,48,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15663,333,56,16]),types.vector(["bootstrap2011/bootstrap-teachpack",15737,334,56,9]),types.vector(["bootstrap2011/bootstrap-teachpack",15747,334,66,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15813,335,56,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15662,333,55,196])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15663,333,56,16])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15814,335,57,6]),types.vector(["bootstrap2011/bootstrap-teachpack",15821,335,64,17]),types.vector(["bootstrap2011/bootstrap-teachpack",15839,335,82,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15813,335,56,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15814,335,57,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15822,335,65,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15836,335,79,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15821,335,64,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15822,335,65,13])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15840,335,83,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15854,335,97,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15839,335,82,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15840,335,83,13])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15916,336,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",15928,336,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15915,336,55,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15916,336,56,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15998,337,66,6]),types.vector(["bootstrap2011/bootstrap-teachpack",16006,337,74,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"toplevel","depth":0,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16009,337,77,4])}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15413,330,38,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15422,330,47,17]),types.vector(["bootstrap2011/bootstrap-teachpack",15440,330,65,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15502,331,47,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15412,330,37,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15413,330,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15423,330,48,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15437,330,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15422,330,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15423,330,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15503,331,48,16]),types.vector(["bootstrap2011/bootstrap-teachpack",15520,331,65,9]),types.vector(["bootstrap2011/bootstrap-teachpack",15530,331,75,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15539,331,84,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15502,331,47,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15503,331,48,16])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15540,331,85,11]),types.vector(["bootstrap2011/bootstrap-teachpack",15552,331,97,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15539,331,84,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15540,331,85,11])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14690,320,23,6]),types.vector(["bootstrap2011/bootstrap-teachpack",14698,320,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14700,320,33,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2,3,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14704,320,37,8]),types.vector(["bootstrap2011/bootstrap-teachpack",14713,320,46,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14715,320,48,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14717,320,50,13]),types.vector(["bootstrap2011/bootstrap-teachpack",14778,321,46,439])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14703,320,36,515])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14704,320,37,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14779,321,47,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14783,321,51,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14884,322,55,3]),types.vector(["bootstrap2011/bootstrap-teachpack",14888,322,59,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14884,322,55,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14889,322,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14891,322,62,24]),types.vector(["bootstrap2011/bootstrap-teachpack",14916,322,87,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14888,322,59,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14889,322,60,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14892,322,63,18]),types.vector(["bootstrap2011/bootstrap-teachpack",14911,322,82,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14891,322,62,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}},{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14783,321,51,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14787,321,55,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14789,321,57,36]),types.vector(["bootstrap2011/bootstrap-teachpack",14826,321,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14787,321,55,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14790,321,58,15]),types.vector(["bootstrap2011/bootstrap-teachpack",14806,321,74,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14789,321,57,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14790,321,58,15])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14974,323,51,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14985,323,62,4]),types.vector(["bootstrap2011/bootstrap-teachpack",14990,323,67,159])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14984,323,61,166])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14985,323,62,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14991,323,68,10]),types.vector(["bootstrap2011/bootstrap-teachpack",15002,323,79,49]),types.vector(["bootstrap2011/bootstrap-teachpack",15126,324,73,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15140,324,87,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14990,323,67,159])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14991,323,68,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15003,323,80,9]),types.vector(["bootstrap2011/bootstrap-teachpack",15013,323,90,18]),types.vector(["bootstrap2011/bootstrap-teachpack",15032,323,109,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15002,323,79,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15003,323,80,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15014,323,91,5]),types.vector(["bootstrap2011/bootstrap-teachpack",15020,323,97,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15013,323,90,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15014,323,91,5])},"rands":[{"$":"toplevel","depth":7,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15020,323,97,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15033,323,110,5]),types.vector(["bootstrap2011/bootstrap-teachpack",15039,323,116,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15032,323,109,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15033,323,110,5])},"rands":[{"$":"toplevel","depth":7,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15039,323,116,10])}]}}}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"player"}]}}}]}}}},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15203,325,51,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":types.EMPTY}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14459,315,19,10]),types.vector(["bootstrap2011/bootstrap-teachpack",14470,315,30,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14478,315,38,11]),types.vector(["bootstrap2011/bootstrap-teachpack",14490,315,50,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14498,315,58,6]),types.vector(["bootstrap2011/bootstrap-teachpack",14505,315,65,10]),types.vector(["bootstrap2011/bootstrap-teachpack",14546,316,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14586,317,30,5]),types.vector(["bootstrap2011/bootstrap-teachpack",14622,318,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14458,315,18,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14459,315,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14342,312,22,6]),types.vector(["bootstrap2011/bootstrap-teachpack",14350,312,30,2]),types.vector(["bootstrap2011/bootstrap-teachpack",14353,312,33,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14368,313,24,9]),types.vector(["bootstrap2011/bootstrap-teachpack",14378,313,34,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14391,313,47,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14411,314,34,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14424,314,47,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14367,313,23,70])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14379,313,35,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14387,313,43,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14378,313,34,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14379,313,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14392,313,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14400,313,56,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14391,313,47,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14392,313,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14412,314,35,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14420,314,43,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14411,314,34,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14412,314,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14425,314,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14433,314,56,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14424,314,47,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14425,314,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14206,309,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14210,309,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14212,309,29,28]),types.vector(["bootstrap2011/bootstrap-teachpack",14241,309,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14210,309,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14213,309,30,15]),types.vector(["bootstrap2011/bootstrap-teachpack",14229,309,46,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14212,309,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14213,309,30,15])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14251,310,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",14259,310,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14261,310,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[7],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14265,310,41,10]),types.vector(["bootstrap2011/bootstrap-teachpack",14276,310,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14264,310,40,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"else":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13781,302,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13789,302,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13791,302,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13823,303,29,10]),types.vector(["bootstrap2011/bootstrap-teachpack",13878,304,29,208]),types.vector(["bootstrap2011/bootstrap-teachpack",14116,307,29,17]),types.vector(["bootstrap2011/bootstrap-teachpack",14163,308,29,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13822,303,28,358])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13823,303,29,10])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13879,304,30,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13883,304,34,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13885,304,36,32]),types.vector(["bootstrap2011/bootstrap-teachpack",13918,304,69,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13883,304,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13886,304,37,15]),types.vector(["bootstrap2011/bootstrap-teachpack",13902,304,53,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13885,304,36,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13886,304,37,15])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13956,305,34,9]),types.vector(["bootstrap2011/bootstrap-teachpack",13966,305,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13978,305,56,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13955,305,33,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13956,305,34,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13967,305,45,7]),types.vector(["bootstrap2011/bootstrap-teachpack",13975,305,53,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13966,305,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13967,305,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13979,305,57,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13994,305,72,11]),types.vector(["bootstrap2011/bootstrap-teachpack",14006,305,84,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13978,305,56,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13995,305,73,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14003,305,81,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13994,305,72,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13995,305,73,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14044,306,34,14]),types.vector(["bootstrap2011/bootstrap-teachpack",14059,306,49,11]),types.vector(["bootstrap2011/bootstrap-teachpack",14071,306,61,11]),types.vector(["bootstrap2011/bootstrap-teachpack",14083,306,73,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14043,306,33,42])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14060,306,50,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14068,306,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14059,306,49,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14060,306,50,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14072,306,62,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14080,306,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14071,306,61,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14072,306,62,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14117,307,30,13]),types.vector(["bootstrap2011/bootstrap-teachpack",14131,307,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14116,307,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14117,307,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14164,308,30,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14177,308,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14163,308,29,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14164,308,30,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"constant","value":types.EMPTY}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13477,297,21,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13481,297,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13486,297,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13488,297,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13490,297,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13486,297,30,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13491,297,35,15]),types.vector(["bootstrap2011/bootstrap-teachpack",13507,297,51,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13490,297,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13491,297,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13481,297,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13533,298,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13540,298,37,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13544,298,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13533,298,30,6])},"rands":[{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13545,298,42,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13560,298,57,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13544,298,41,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86])}]}}},"then":{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13669,300,25,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13673,300,29,36]),types.vector(["bootstrap2011/bootstrap-teachpack",13710,300,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13668,300,24,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13669,300,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13674,300,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13682,300,38,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13686,300,42,5]),types.vector(["bootstrap2011/bootstrap-teachpack",13692,300,48,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13694,300,50,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13685,300,41,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13686,300,42,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13208,293,21,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13212,293,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13217,293,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13219,293,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13221,293,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13217,293,30,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13222,293,35,15]),types.vector(["bootstrap2011/bootstrap-teachpack",13238,293,51,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13221,293,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13222,293,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13212,293,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13264,294,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13271,294,37,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13275,294,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13264,294,30,6])},"rands":[{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13276,294,42,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13291,294,57,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13275,294,41,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86])}]}}},"then":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13400,296,25,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13404,296,29,36]),types.vector(["bootstrap2011/bootstrap-teachpack",13441,296,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13399,296,24,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13400,296,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13405,296,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13413,296,38,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,17],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13417,296,42,5]),types.vector(["bootstrap2011/bootstrap-teachpack",13423,296,48,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13425,296,50,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13416,296,41,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13417,296,42,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13154,292,31,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13166,292,43,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13153,292,30,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13154,292,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13094,291,27,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13106,291,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13093,291,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13094,291,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13038,290,27,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13050,290,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13037,290,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13038,290,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12915,288,13,3]),types.vector(["bootstrap2011/bootstrap-teachpack",12919,288,17,61]),types.vector(["bootstrap2011/bootstrap-teachpack",12998,289,17,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12914,288,12,95])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12915,288,13,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12920,288,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",12928,288,26,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12932,288,30,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12943,288,41,27]),types.vector(["bootstrap2011/bootstrap-teachpack",12971,288,69,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12973,288,71,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12931,288,29,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12932,288,30,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12944,288,42,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12956,288,54,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12943,288,41,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12944,288,42,11])},"rands":[{"$":"constant","value":"screen-left"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":3,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12973,288,71,5])}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12781,285,13,3]),types.vector(["bootstrap2011/bootstrap-teachpack",12785,285,17,62]),types.vector(["bootstrap2011/bootstrap-teachpack",12865,286,17,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12780,285,12,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12781,285,13,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12786,285,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",12794,285,26,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12798,285,30,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12809,285,41,28]),types.vector(["bootstrap2011/bootstrap-teachpack",12838,285,70,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12840,285,72,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12797,285,29,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12798,285,30,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12810,285,42,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12822,285,54,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12809,285,41,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12810,285,42,11])},"rands":[{"$":"constant","value":"screen-right"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":3,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12840,285,72,5])}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12698,283,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12702,283,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",12708,283,34,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12702,283,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12732,283,58,4]),types.vector(["bootstrap2011/bootstrap-teachpack",12737,283,63,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12731,283,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12732,283,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12621,282,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12625,282,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",12631,282,34,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12625,282,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12655,282,58,4]),types.vector(["bootstrap2011/bootstrap-teachpack",12660,282,63,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12654,282,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12655,282,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12517,280,20,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12528,280,31,36]),types.vector(["bootstrap2011/bootstrap-teachpack",12576,281,31,9]),types.vector(["bootstrap2011/bootstrap-teachpack",12586,281,41,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12516,280,19,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12517,280,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12529,280,32,9]),types.vector(["bootstrap2011/bootstrap-teachpack",12539,280,42,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12551,280,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12528,280,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12529,280,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12540,280,43,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12542,280,45,5]),types.vector(["bootstrap2011/bootstrap-teachpack",12548,280,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12539,280,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12540,280,43,1])},"rands":[{"$":"toplevel","depth":8,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12542,280,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12552,280,55,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12554,280,57,6]),types.vector(["bootstrap2011/bootstrap-teachpack",12561,280,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12551,280,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12552,280,55,1])},"rands":[{"$":"toplevel","depth":8,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12554,280,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"center"}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18570,403,11,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",18570,403,11,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18575,403,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18598,405,8,10]),types.vector(["bootstrap2011/bootstrap-teachpack",18609,405,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18598,405,8,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18634,406,8,7]),types.vector(["bootstrap2011/bootstrap-teachpack",18642,406,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18634,406,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18665,407,8,7]),types.vector(["bootstrap2011/bootstrap-teachpack",18673,407,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18665,407,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18696,408,8,6]),types.vector(["bootstrap2011/bootstrap-teachpack",18703,408,15,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18696,408,8,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18725,409,8,8]),types.vector(["bootstrap2011/bootstrap-teachpack",18734,409,17,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":176,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18725,409,8,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18758,410,8,5]),types.vector(["bootstrap2011/bootstrap-teachpack",18764,410,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18758,410,8,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18789,411,8,7]),types.vector(["bootstrap2011/bootstrap-teachpack",18797,411,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18789,411,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"toplevel","depth":4,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257]),types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18937,416,11,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",18937,416,11,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18951,416,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18959,417,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18964,417,10,1]),types.vector(["bootstrap2011/bootstrap-teachpack",18966,417,12,2]),types.vector(["bootstrap2011/bootstrap-teachpack",18969,417,15,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18958,417,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18959,417,5,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19072,421,11,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19072,421,11,13]),types.vector(["bootstrap2011/bootstrap-teachpack",19086,421,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19094,422,5,13]),types.vector(["bootstrap2011/bootstrap-teachpack",19108,422,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19093,422,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19094,422,5,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19109,422,20,14]),types.vector(["bootstrap2011/bootstrap-teachpack",19124,422,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19108,422,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19109,422,20,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19302,427,11,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19302,427,11,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19313,427,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19324,427,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19326,427,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19328,427,37,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19345,428,5,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19356,428,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19367,428,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19369,428,29,7]),types.vector(["bootstrap2011/bootstrap-teachpack",19377,428,37,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19344,428,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19345,428,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19370,428,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19372,428,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19374,428,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19369,428,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19370,428,30,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19565,433,11,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19565,433,11,9]),types.vector(["bootstrap2011/bootstrap-teachpack",19575,433,21,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19586,433,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19588,433,34,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19590,433,36,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19607,434,5,11]),types.vector(["bootstrap2011/bootstrap-teachpack",19619,434,17,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19630,434,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19632,434,30,31]),types.vector(["bootstrap2011/bootstrap-teachpack",19664,434,62,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19606,434,4,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19607,434,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19633,434,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19635,434,33,25]),types.vector(["bootstrap2011/bootstrap-teachpack",19661,434,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19632,434,30,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19633,434,31,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19636,434,34,12]),types.vector(["bootstrap2011/bootstrap-teachpack",19649,434,47,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19635,434,33,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":165,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19636,434,34,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19715,437,11,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19715,437,11,2]),types.vector(["bootstrap2011/bootstrap-teachpack",19718,437,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19722,437,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19724,437,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19726,437,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19721,437,17,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19722,437,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19958,442,11,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19958,442,11,4]),types.vector(["bootstrap2011/bootstrap-teachpack",19963,442,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19967,442,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",19971,442,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19966,442,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19967,442,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19972,442,25,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19974,442,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19976,442,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19971,442,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19972,442,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19977,442,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19979,442,32,2]),types.vector(["bootstrap2011/bootstrap-teachpack",19982,442,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19976,442,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19977,442,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19979,442,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20220,447,11,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20220,447,11,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20227,447,18,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20231,447,22,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20235,447,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20230,447,21,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20231,447,22,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20236,447,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20238,447,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20240,447,31,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20235,447,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20236,447,27,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20241,447,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20243,447,34,2]),types.vector(["bootstrap2011/bootstrap-teachpack",20246,447,37,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20240,447,31,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20241,447,32,1])},"rands":[{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20243,447,34,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20482,452,11,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20482,452,11,7]),types.vector(["bootstrap2011/bootstrap-teachpack",20490,452,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20494,452,23,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20498,452,27,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20493,452,22,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20494,452,23,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20499,452,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20501,452,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20503,452,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20498,452,27,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20499,452,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20504,452,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20506,452,35,2]),types.vector(["bootstrap2011/bootstrap-teachpack",20509,452,38,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20503,452,32,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20504,452,33,1])},"rands":[{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20506,452,35,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20598,456,11,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20598,456,11,4]),types.vector(["bootstrap2011/bootstrap-teachpack",20603,456,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20613,457,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",20622,457,14,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20626,457,18,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20612,457,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20613,457,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20627,457,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20634,457,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20626,457,18,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20627,457,19,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20635,457,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20642,457,34,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20634,457,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20635,457,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20765,461,11,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20765,461,11,7]),types.vector(["bootstrap2011/bootstrap-teachpack",20773,461,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20775,461,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20784,462,5,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20796,463,5,29]),types.vector(["bootstrap2011/bootstrap-teachpack",20831,464,5,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20783,462,4,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20784,462,5,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20797,463,6,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20805,463,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20811,463,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20818,463,27,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20822,463,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20810,463,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20811,463,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20849,466,11,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20849,466,11,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20853,466,15,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20855,466,17,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20863,467,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20867,467,9,5]),types.vector(["bootstrap2011/bootstrap-teachpack",20873,467,15,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20867,467,9,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20877,467,19,7]),types.vector(["bootstrap2011/bootstrap-teachpack",20885,467,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20887,467,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20876,467,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20877,467,19,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20891,467,33,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20898,467,40,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20900,467,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20890,467,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20891,467,33,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217]),types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6105,136,1,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6113,136,9,193]),types.vector(["bootstrap2011/bootstrap-teachpack",6316,139,9,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6105,136,1,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6114,136,10,15]),types.vector(["bootstrap2011/bootstrap-teachpack",6130,136,26,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6193,137,26,43]),types.vector(["bootstrap2011/bootstrap-teachpack",6263,138,26,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6113,136,9,193])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6114,136,10,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6131,136,27,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6142,136,38,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6160,136,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6163,136,59,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6130,136,26,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6131,136,27,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6143,136,39,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6153,136,49,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6156,136,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6142,136,38,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6143,136,39,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6194,137,27,4]),types.vector(["bootstrap2011/bootstrap-teachpack",6199,137,32,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6193,137,26,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6194,137,27,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6200,137,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6211,137,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6229,137,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6232,137,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6199,137,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6200,137,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6212,137,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6222,137,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6225,137,58,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6211,137,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6212,137,45,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",6264,138,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6272,138,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6274,138,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6278,138,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6280,138,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6292,138,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6277,138,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6278,138,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6281,138,44,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6289,138,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6280,138,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6281,138,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6293,138,56,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6301,138,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6292,138,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6293,138,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}},{"$":"toplevel","depth":3,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6316,139,9,4])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218]),types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6323,140,1,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6331,140,9,193]),types.vector(["bootstrap2011/bootstrap-teachpack",6534,143,9,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6323,140,1,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6332,140,10,15]),types.vector(["bootstrap2011/bootstrap-teachpack",6348,140,26,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6411,141,26,43]),types.vector(["bootstrap2011/bootstrap-teachpack",6481,142,26,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6331,140,9,193])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6332,140,10,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6349,140,27,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6360,140,38,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6378,140,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6381,140,59,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6348,140,26,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6349,140,27,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6361,140,39,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6371,140,49,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6374,140,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6360,140,38,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6361,140,39,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6412,141,27,4]),types.vector(["bootstrap2011/bootstrap-teachpack",6417,141,32,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6411,141,26,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6412,141,27,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6418,141,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6429,141,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6447,141,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6450,141,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6417,141,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6418,141,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6430,141,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6440,141,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6443,141,58,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6429,141,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6430,141,45,9])},"rands":[{"$":"constant","value":51},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",6482,142,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6490,142,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6492,142,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6496,142,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6498,142,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6510,142,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6495,142,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6496,142,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6499,142,44,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6507,142,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6498,142,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6499,142,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6511,142,56,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6519,142,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6510,142,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6511,142,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}},{"$":"toplevel","depth":3,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6534,143,9,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355]),types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6542,144,1,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6550,144,9,331]),types.vector(["bootstrap2011/bootstrap-teachpack",6891,149,9,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6542,144,1,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6551,144,10,15]),types.vector(["bootstrap2011/bootstrap-teachpack",6567,144,26,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6630,145,26,181]),types.vector(["bootstrap2011/bootstrap-teachpack",6838,148,26,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6550,144,9,331])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6551,144,10,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6568,144,27,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6579,144,38,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6597,144,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6600,144,59,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6567,144,26,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6568,144,27,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6580,144,39,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6590,144,49,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6593,144,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6579,144,38,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6580,144,39,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6631,145,27,4]),types.vector(["bootstrap2011/bootstrap-teachpack",6636,145,32,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6705,146,32,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6774,147,32,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6630,145,26,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6631,145,27,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6637,145,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6648,145,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6666,145,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6669,145,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6636,145,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6637,145,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6649,145,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6659,145,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6662,145,58,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6648,145,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6649,145,45,9])},"rands":[{"$":"constant","value":51},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6706,146,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6717,146,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6735,146,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6738,146,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6705,146,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6706,146,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6718,146,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6728,146,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6731,146,58,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6717,146,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6718,146,45,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6775,147,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6786,147,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6804,147,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6807,147,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6774,147,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6775,147,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6787,147,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6797,147,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6800,147,58,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6786,147,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6787,147,45,9])},"rands":[{"$":"constant","value":52},{"$":"constant","value":51}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",6839,148,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6847,148,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6849,148,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6853,148,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6855,148,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6867,148,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6852,148,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6853,148,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6856,148,44,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6864,148,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6855,148,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6856,148,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6868,148,56,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6876,148,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6867,148,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6868,148,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}},{"$":"toplevel","depth":3,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6891,149,9,4])}]}}}]}}}]}}, 'provides': ["sine","subset?","tangent","type","sq","string->image","cosine","make-game","pick","play","put-image","number->image","overlay-at","in?","*player-y*","*score*","*player-x*"]}; +window.COLLECTIONS["bootstrap2011/bootstrap-teachpack"] = { 'name': "bootstrap2011/bootstrap-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"dangerImgs"},{"$":"global-bucket","value":"origTargets"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"origDangers"},{"$":"global-bucket","value":"update-danger*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"onscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"projectileImg"},{"$":"global-bucket","value":"update-projectile*"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"update-danger"},{"$":"global-bucket","value":"update-projectile"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"score"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"projectiles"},{"$":"global-bucket","value":"dangers"},{"$":"global-bucket","value":"keypress*"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"in-domain?"},{"$":"global-bucket","value":"next-posn"},{"$":"global-bucket","value":"next-x"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"others"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"screen-point"},{"$":"global-bucket","value":"player-point"},{"$":"global-bucket","value":"py"},{"$":"global-bucket","value":"color"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"cy"},{"$":"global-bucket","value":"cx"},{"$":"global-bucket","value":"px"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-with-player"},{"$":"global-bucket","value":"world-with-shots"},{"$":"global-bucket","value":"world-with-timer"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-with-targets"},{"$":"global-bucket","value":"world-with-score"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world-with-dangers"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-shots"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-dangers"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"move-all"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"survival-checker"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"random-posn"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"play"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"make-game"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"example-world"},{"$":"global-bucket","value":"get-direction"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"check-collision"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"being-source"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"add-informative-triangle"},{"$":"global-bucket","value":"animate/proc"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"*player-x*"},{"$":"global-bucket","value":"*score*"},{"$":"global-bucket","value":"*target-increment*"},{"$":"global-bucket","value":"*player-y*"},{"$":"global-bucket","value":"*distance*"},{"$":"global-bucket","value":"*line-length*"},{"$":"global-bucket","value":"*distances-color*"},{"$":"global-bucket","value":"*danger-increment*"},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("triangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text/font"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("stop-when"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("round"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("radial-star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("print-values"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("ormap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("line"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("inexact->exact"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("format"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("false"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("error"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("circle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("apply"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("EXAMPLE"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",193,9,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",212,10,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",232,11,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",264,12,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",277,12,21,3]),types.vector(["bootstrap2011/bootstrap-teachpack",281,12,25,7]),types.vector(["bootstrap2011/bootstrap-teachpack",276,12,20,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",276,12,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",277,12,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",299,13,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",311,13,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",315,13,24,40]),types.vector(["bootstrap2011/bootstrap-teachpack",310,13,19,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",310,13,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",311,13,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",316,13,25,9]),types.vector(["bootstrap2011/bootstrap-teachpack",326,13,35,5]),types.vector(["bootstrap2011/bootstrap-teachpack",332,13,41,6]),types.vector(["bootstrap2011/bootstrap-teachpack",339,13,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",347,13,56,7]),types.vector(["bootstrap2011/bootstrap-teachpack",315,13,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",315,13,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",316,13,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",326,13,35,5])},{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",332,13,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",367,14,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",367,14,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",377,14,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",384,14,26,3]),types.vector(["bootstrap2011/bootstrap-teachpack",376,14,18,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",376,14,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",377,14,19,6])},"rands":[{"$":"constant","value":200}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",398,15,8,18])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",429,16,8,18])}],"body":{"$":"constant","value":-50}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",500,19,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",509,19,17,3]),types.vector(["bootstrap2011/bootstrap-teachpack",513,19,21,1]),types.vector(["bootstrap2011/bootstrap-teachpack",508,19,16,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",508,19,16,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",509,19,17,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",525,20,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",537,20,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",541,20,24,1]),types.vector(["bootstrap2011/bootstrap-teachpack",536,20,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",536,20,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",537,20,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",553,21,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",565,21,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",569,21,24,1]),types.vector(["bootstrap2011/bootstrap-teachpack",564,21,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",564,21,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",565,21,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",604,24,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",619,24,23,3]),types.vector(["bootstrap2011/bootstrap-teachpack",623,24,27,15]),types.vector(["bootstrap2011/bootstrap-teachpack",618,24,22,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",618,24,22,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",619,24,23,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",624,24,28,6]),types.vector(["bootstrap2011/bootstrap-teachpack",631,24,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",633,24,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",649,25,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",661,25,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",665,25,24,23]),types.vector(["bootstrap2011/bootstrap-teachpack",660,25,19,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",660,25,19,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",661,25,20,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",666,25,25,6]),types.vector(["bootstrap2011/bootstrap-teachpack",673,25,32,2]),types.vector(["bootstrap2011/bootstrap-teachpack",676,25,35,2]),types.vector(["bootstrap2011/bootstrap-teachpack",679,25,38,2]),types.vector(["bootstrap2011/bootstrap-teachpack",682,25,41,2])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",699,26,8,17])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",718,26,27,3]),types.vector(["bootstrap2011/bootstrap-teachpack",722,26,31,2]),types.vector(["bootstrap2011/bootstrap-teachpack",717,26,26,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",717,26,26,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",718,26,27,3])},"rands":[{"$":"constant","value":""}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",877,33,15,5])},{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"toplevel","depth":0,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"toplevel","depth":0,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"toplevel","depth":0,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":3},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43]),types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},"rands":[{"$":"toplevel","depth":3,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",862,33,0,43])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("source")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1023,36,15,5])},{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":8},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("dangers")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("shots")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73]),types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1008,36,0,73])},{"$":"constant","value":7},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1122,39,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1131,39,17,7]),types.vector(["bootstrap2011/bootstrap-teachpack",1139,39,25,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1146,39,32,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1130,39,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1130,39,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1131,39,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1139,39,25,6])},{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1146,39,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1167,40,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1176,40,17,7]),types.vector(["bootstrap2011/bootstrap-teachpack",1184,40,25,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1191,40,32,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1175,40,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1175,40,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1176,40,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1184,40,25,6])},{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1191,40,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1259,43,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1259,43,9,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1271,43,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1278,43,28,9]),types.vector(["bootstrap2011/bootstrap-teachpack",1288,43,38,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1302,43,52,28]),types.vector(["bootstrap2011/bootstrap-teachpack",1277,43,27,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1277,43,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1278,43,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1289,43,39,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1296,43,46,4]),types.vector(["bootstrap2011/bootstrap-teachpack",1288,43,38,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1288,43,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1289,43,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1303,43,53,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1305,43,55,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1312,43,62,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1302,43,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1302,43,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1303,43,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1305,43,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1313,43,63,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1315,43,65,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1312,43,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1312,43,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1313,43,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1316,43,66,6]),types.vector(["bootstrap2011/bootstrap-teachpack",1323,43,73,4]),types.vector(["bootstrap2011/bootstrap-teachpack",1315,43,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1315,43,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1316,43,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1364,46,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-dangers"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1364,46,9,18]),types.vector(["bootstrap2011/bootstrap-teachpack",1383,46,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1385,46,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1389,46,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1400,46,45,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1418,46,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1434,46,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1452,46,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",1469,46,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1482,46,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1498,46,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1514,46,159,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1388,46,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1388,46,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1389,46,34,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1419,46,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1431,46,76,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1418,46,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1418,46,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1419,46,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1435,46,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1449,46,94,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1434,46,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1434,46,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1435,46,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1453,46,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1466,46,111,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1452,46,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1452,46,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1453,46,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1470,46,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",1479,46,124,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1469,46,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1469,46,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1470,46,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1483,46,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1495,46,140,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1482,46,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1482,46,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1483,46,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1499,46,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1511,46,156,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1498,46,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1498,46,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1499,46,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1515,46,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1527,46,172,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1514,46,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1514,46,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1515,46,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1541,47,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-shots"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1541,47,9,16]),types.vector(["bootstrap2011/bootstrap-teachpack",1560,47,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1562,47,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1566,47,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1577,47,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1595,47,63,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1611,47,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1629,47,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",1646,47,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1659,47,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1675,47,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1691,47,159,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1565,47,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1565,47,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1566,47,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1578,47,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1592,47,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1577,47,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1577,47,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1578,47,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1612,47,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1626,47,94,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1611,47,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1611,47,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1612,47,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1630,47,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1643,47,111,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1629,47,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1629,47,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1630,47,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1647,47,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",1656,47,124,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1646,47,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1646,47,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1647,47,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1660,47,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1672,47,140,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1659,47,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1659,47,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1660,47,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1676,47,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1688,47,156,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1675,47,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1675,47,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1676,47,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1692,47,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1704,47,172,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1691,47,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1691,47,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1692,47,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1718,48,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-targets"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1718,48,9,18]),types.vector(["bootstrap2011/bootstrap-teachpack",1737,48,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1739,48,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1743,48,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1754,48,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1772,48,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1788,48,79,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1806,48,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",1823,48,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1836,48,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1852,48,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1868,48,159,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1742,48,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1742,48,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1743,48,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1755,48,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1769,48,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1754,48,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1754,48,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1755,48,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1773,48,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1785,48,76,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1772,48,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1772,48,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1773,48,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1807,48,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",1820,48,111,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1806,48,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1806,48,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1807,48,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1824,48,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",1833,48,124,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1823,48,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1823,48,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1824,48,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1837,48,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1849,48,140,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1836,48,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1836,48,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1837,48,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1853,48,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1865,48,156,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1852,48,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1852,48,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1853,48,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1869,48,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1881,48,172,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1868,48,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1868,48,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1869,48,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1895,49,9,17])}],"body":{"$":"lam","name":types.symbol("world-with-player"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",1895,49,9,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1914,49,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1916,49,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1920,49,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",1931,49,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1949,49,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1965,49,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",1983,49,97,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2000,49,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2013,49,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2029,49,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2045,49,159,15]),types.vector(["bootstrap2011/bootstrap-teachpack",1919,49,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1919,49,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1920,49,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1932,49,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1946,49,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1931,49,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1931,49,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1932,49,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1950,49,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",1962,49,76,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1949,49,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1949,49,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1950,49,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",1966,49,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",1980,49,94,1]),types.vector(["bootstrap2011/bootstrap-teachpack",1965,49,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",1965,49,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",1966,49,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2001,49,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",2010,49,124,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2000,49,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2000,49,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2001,49,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2014,49,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2026,49,140,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2013,49,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2013,49,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2014,49,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2030,49,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2042,49,156,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2029,49,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2029,49,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2030,49,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2046,49,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2058,49,172,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2045,49,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2045,49,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2046,49,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2072,50,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-score"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2072,50,9,16]),types.vector(["bootstrap2011/bootstrap-teachpack",2091,50,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2093,50,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2097,50,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",2108,50,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",2126,50,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2142,50,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",2160,50,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",2177,50,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2190,50,127,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2206,50,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2222,50,159,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2096,50,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2096,50,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2097,50,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2109,50,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2123,50,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2108,50,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2108,50,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2109,50,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2127,50,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2139,50,76,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2126,50,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2126,50,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2127,50,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2143,50,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2157,50,94,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2142,50,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2142,50,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2143,50,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2161,50,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2174,50,111,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2160,50,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2160,50,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2161,50,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2178,50,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",2187,50,124,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2177,50,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2177,50,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2178,50,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2207,50,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2219,50,156,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2206,50,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2206,50,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2207,50,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2223,50,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2235,50,172,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2222,50,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2222,50,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2223,50,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2249,51,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-timer"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2249,51,9,16]),types.vector(["bootstrap2011/bootstrap-teachpack",2268,51,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2270,51,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2274,51,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",2285,51,45,17]),types.vector(["bootstrap2011/bootstrap-teachpack",2303,51,63,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2319,51,79,17]),types.vector(["bootstrap2011/bootstrap-teachpack",2337,51,97,16]),types.vector(["bootstrap2011/bootstrap-teachpack",2354,51,114,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2367,51,127,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2383,51,143,15]),types.vector(["bootstrap2011/bootstrap-teachpack",2399,51,159,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2273,51,33,128])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2273,51,33,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2274,51,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2286,51,46,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2300,51,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2285,51,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2285,51,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2286,51,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2304,51,64,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2316,51,76,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2303,51,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2303,51,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2304,51,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2320,51,80,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2334,51,94,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2319,51,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2319,51,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2320,51,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2338,51,98,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2351,51,111,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2337,51,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2337,51,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2338,51,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2355,51,115,8]),types.vector(["bootstrap2011/bootstrap-teachpack",2364,51,124,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2354,51,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2354,51,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2355,51,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2368,51,128,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2380,51,140,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2367,51,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2367,51,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2368,51,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2384,51,144,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2396,51,156,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2383,51,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2383,51,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2384,51,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2478,54,9,24])}],"body":{"$":"lam","name":types.symbol("add-informative-triangle"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2478,54,9,24]),types.vector(["bootstrap2011/bootstrap-teachpack",2503,54,34,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2506,54,37,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2509,54,40,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2515,54,46,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2536,55,9,78]),types.vector(["bootstrap2011/bootstrap-teachpack",2550,55,23,63]),types.vector(["bootstrap2011/bootstrap-teachpack",2536,55,9,78])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2536,55,9,78])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2536,55,9,78]),types.vector(["bootstrap2011/bootstrap-teachpack",2537,55,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2624,56,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",2628,56,13,21]),types.vector(["bootstrap2011/bootstrap-teachpack",2624,56,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2624,56,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2624,56,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",2625,56,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2660,57,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",2664,57,13,21]),types.vector(["bootstrap2011/bootstrap-teachpack",2660,57,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2660,57,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2660,57,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",2661,57,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25]),types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2693,58,5,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2697,58,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2702,58,14,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2704,58,16,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2707,58,19,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2702,58,14,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2701,58,13,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2697,58,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2712,58,24,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2714,58,26,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2717,58,29,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2712,58,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2711,58,23,9])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2696,58,8,25])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2789,60,8,839]),types.vector(["bootstrap2011/bootstrap-teachpack",2799,60,18,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2828,61,18,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2859,62,20,60]),types.vector(["bootstrap2011/bootstrap-teachpack",2789,60,8,839])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2789,60,8,839])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2789,60,8,839]),types.vector(["bootstrap2011/bootstrap-teachpack",2796,60,15,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2825,61,15,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2854,62,15,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2933,63,11,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2957,64,11,52]),types.vector(["bootstrap2011/bootstrap-teachpack",3021,65,11,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3037,65,27,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3051,66,11,575]),types.vector(["bootstrap2011/bootstrap-teachpack",2932,63,10,695])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2932,63,10,695])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2933,63,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2958,64,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",2963,64,17,36]),types.vector(["bootstrap2011/bootstrap-teachpack",3000,64,54,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3003,64,57,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2957,64,11,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2957,64,11,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2958,64,12,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2964,64,18,4]),types.vector(["bootstrap2011/bootstrap-teachpack",2969,64,23,29]),types.vector(["bootstrap2011/bootstrap-teachpack",2963,64,17,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2963,64,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2970,64,24,21]),types.vector(["bootstrap2011/bootstrap-teachpack",2992,64,46,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2995,64,49,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2969,64,23,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2969,64,23,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2971,64,25,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2977,64,31,13]),types.vector(["bootstrap2011/bootstrap-teachpack",2970,64,24,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2970,64,24,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2971,64,25,5])},"rands":[{"$":"toplevel","depth":11,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2977,64,31,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3022,65,12,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3024,65,14,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3027,65,17,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3021,65,11,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3021,65,11,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3022,65,12,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3028,65,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3030,65,20,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3033,65,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3027,65,17,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3027,65,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3028,65,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3052,66,12,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3076,67,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",3106,68,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3122,68,28,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3137,69,12,488]),types.vector(["bootstrap2011/bootstrap-teachpack",3051,66,11,575])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3051,66,11,575])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3052,66,12,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3077,67,13,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3082,67,18,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3085,67,21,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3087,67,23,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3076,67,12,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3076,67,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3077,67,13,4])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3107,68,13,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3109,68,15,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3112,68,18,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3106,68,12,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3106,68,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3107,68,13,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3113,68,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3115,68,21,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3118,68,24,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3112,68,18,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3112,68,18,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3113,68,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3138,69,13,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3163,70,13,52]),types.vector(["bootstrap2011/bootstrap-teachpack",3229,71,13,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3232,71,16,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3261,72,13,363]),types.vector(["bootstrap2011/bootstrap-teachpack",3137,69,12,488])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3137,69,12,488])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3138,69,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3164,70,14,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3169,70,19,36]),types.vector(["bootstrap2011/bootstrap-teachpack",3206,70,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3209,70,59,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3163,70,13,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3163,70,13,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3164,70,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3170,70,20,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3175,70,25,29]),types.vector(["bootstrap2011/bootstrap-teachpack",3169,70,19,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3169,70,19,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3176,70,26,21]),types.vector(["bootstrap2011/bootstrap-teachpack",3198,70,48,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3201,70,51,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3175,70,25,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3175,70,25,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3177,70,27,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3183,70,33,13]),types.vector(["bootstrap2011/bootstrap-teachpack",3176,70,26,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3176,70,26,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3177,70,27,5])},"rands":[{"$":"toplevel","depth":19,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3183,70,33,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3233,71,17,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3235,71,19,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3238,71,22,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3232,71,16,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3232,71,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3233,71,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3239,71,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3241,71,25,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3244,71,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3238,71,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3238,71,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3239,71,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3262,72,14,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3288,73,14,17]),types.vector(["bootstrap2011/bootstrap-teachpack",3320,74,14,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3323,74,17,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3353,75,14,270]),types.vector(["bootstrap2011/bootstrap-teachpack",3261,72,13,363])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3261,72,13,363])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3262,72,14,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3289,73,15,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3294,73,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3296,73,22,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3299,73,25,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3288,73,14,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3288,73,14,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3289,73,15,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3324,74,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3326,74,20,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3329,74,23,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3323,74,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3323,74,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":18,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3324,74,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3330,74,24,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3332,74,26,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3335,74,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3329,74,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3329,74,23,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3330,74,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3354,75,15,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3381,76,15,55]),types.vector(["bootstrap2011/bootstrap-teachpack",3452,77,15,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3468,77,31,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3499,78,15,123]),types.vector(["bootstrap2011/bootstrap-teachpack",3353,75,14,270])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3353,75,14,270])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3354,75,15,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3382,76,16,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3387,76,21,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3427,76,61,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3430,76,64,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3381,76,15,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3381,76,15,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":23,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3382,76,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3388,76,22,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3393,76,27,32]),types.vector(["bootstrap2011/bootstrap-teachpack",3387,76,21,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3387,76,21,39])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3394,76,28,18]),types.vector(["bootstrap2011/bootstrap-teachpack",3413,76,47,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3416,76,50,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3419,76,53,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3422,76,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3393,76,27,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3393,76,27,32])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3395,76,29,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3401,76,35,10]),types.vector(["bootstrap2011/bootstrap-teachpack",3394,76,28,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3394,76,28,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":29,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3395,76,29,5])},"rands":[{"$":"toplevel","depth":29,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3401,76,35,10])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3453,77,16,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3455,77,18,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3458,77,21,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3452,77,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3452,77,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3453,77,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3459,77,22,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3461,77,24,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3464,77,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3458,77,21,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3458,77,21,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3459,77,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3469,77,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3471,77,34,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3474,77,37,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3468,77,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3468,77,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3469,77,32,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3475,77,38,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3477,77,40,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3480,77,43,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3474,77,37,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3474,77,37,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3475,77,38,1])},"rands":[{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3500,78,16,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3528,79,16,18]),types.vector(["bootstrap2011/bootstrap-teachpack",3563,80,16,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3579,80,32,15]),types.vector(["bootstrap2011/bootstrap-teachpack",3611,81,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",3499,78,15,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3499,78,15,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3500,78,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3529,79,17,4]),types.vector(["bootstrap2011/bootstrap-teachpack",3534,79,22,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3537,79,25,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3540,79,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3528,79,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3528,79,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":27,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3529,79,17,4])},"rands":[{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3564,80,17,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3566,80,19,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3569,80,22,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3563,80,16,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3563,80,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3564,80,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3570,80,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3572,80,25,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3575,80,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3569,80,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3569,80,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3570,80,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3580,80,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3582,80,35,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3585,80,38,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3579,80,32,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3579,80,32,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3580,80,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3586,80,39,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3588,80,41,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3591,80,44,1]),types.vector(["bootstrap2011/bootstrap-teachpack",3585,80,38,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3585,80,38,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3586,80,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":36,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2800,60,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2802,60,21,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2805,60,24,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2799,60,18,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2799,60,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2800,60,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2829,61,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",2831,61,21,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2834,61,24,2]),types.vector(["bootstrap2011/bootstrap-teachpack",2828,61,18,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2828,61,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2829,61,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",2860,62,21,6]),types.vector(["bootstrap2011/bootstrap-teachpack",2868,62,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2874,62,35,14]),types.vector(["bootstrap2011/bootstrap-teachpack",2889,62,50,28]),types.vector(["bootstrap2011/bootstrap-teachpack",2873,62,34,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2873,62,34,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2874,62,35,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2890,62,51,14]),types.vector(["bootstrap2011/bootstrap-teachpack",2905,62,66,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2889,62,50,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2889,62,50,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2890,62,51,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2906,62,67,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2912,62,73,3]),types.vector(["bootstrap2011/bootstrap-teachpack",2905,62,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2905,62,66,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2906,62,67,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2665,57,14,6]),types.vector(["bootstrap2011/bootstrap-teachpack",2672,57,21,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2664,57,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2664,57,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2665,57,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2629,56,14,6]),types.vector(["bootstrap2011/bootstrap-teachpack",2636,56,21,12]),types.vector(["bootstrap2011/bootstrap-teachpack",2628,56,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2628,56,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2629,56,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2551,55,24,11]),types.vector(["bootstrap2011/bootstrap-teachpack",2563,55,36,49]),types.vector(["bootstrap2011/bootstrap-teachpack",2550,55,23,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2550,55,23,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2551,55,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2564,55,37,9]),types.vector(["bootstrap2011/bootstrap-teachpack",2574,55,47,18]),types.vector(["bootstrap2011/bootstrap-teachpack",2593,55,66,18]),types.vector(["bootstrap2011/bootstrap-teachpack",2563,55,36,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2563,55,36,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2564,55,37,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2575,55,48,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2581,55,54,10]),types.vector(["bootstrap2011/bootstrap-teachpack",2574,55,47,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2574,55,47,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2575,55,48,5])},"rands":[{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2581,55,54,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",2594,55,67,5]),types.vector(["bootstrap2011/bootstrap-teachpack",2600,55,73,10]),types.vector(["bootstrap2011/bootstrap-teachpack",2593,55,66,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",2593,55,66,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2594,55,67,5])},"rands":[{"$":"toplevel","depth":5,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",2600,55,73,10])}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3750,85,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3750,85,9,10]),types.vector(["bootstrap2011/bootstrap-teachpack",3761,85,20,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3767,85,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3788,86,9,47]),types.vector(["bootstrap2011/bootstrap-teachpack",3802,86,23,32]),types.vector(["bootstrap2011/bootstrap-teachpack",3788,86,9,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3788,86,9,47])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3788,86,9,47]),types.vector(["bootstrap2011/bootstrap-teachpack",3789,86,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3845,87,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",3849,87,13,21]),types.vector(["bootstrap2011/bootstrap-teachpack",3845,87,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3845,87,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3845,87,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",3846,87,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3881,88,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",3885,88,13,21]),types.vector(["bootstrap2011/bootstrap-teachpack",3881,88,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3881,88,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3881,88,9,26]),types.vector(["bootstrap2011/bootstrap-teachpack",3882,88,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3917,89,9,235]),types.vector(["bootstrap2011/bootstrap-teachpack",3928,89,20,223]),types.vector(["bootstrap2011/bootstrap-teachpack",3917,89,9,235])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3917,89,9,235])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",3917,89,9,235]),types.vector(["bootstrap2011/bootstrap-teachpack",3918,89,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4159,93,5,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4171,93,17,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4193,93,39,2]),types.vector(["bootstrap2011/bootstrap-teachpack",4196,93,42,2]),types.vector(["bootstrap2011/bootstrap-teachpack",4199,93,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",4158,93,4,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4158,93,4,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4159,93,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4172,93,18,13]),types.vector(["bootstrap2011/bootstrap-teachpack",4186,93,32,5]),types.vector(["bootstrap2011/bootstrap-teachpack",4171,93,17,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4171,93,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4172,93,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3929,89,21,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3933,89,25,8]),types.vector(["bootstrap2011/bootstrap-teachpack",3942,89,34,25]),types.vector(["bootstrap2011/bootstrap-teachpack",3968,89,60,2]),types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3933,89,25,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3943,89,35,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3949,89,41,17]),types.vector(["bootstrap2011/bootstrap-teachpack",3942,89,34,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3942,89,34,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3943,89,35,5])},"rands":[{"$":"toplevel","depth":8,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3949,89,41,17])}]}}},{"$":"constant","value":""}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3932,89,24,39])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4032,91,25,24]),types.vector(["bootstrap2011/bootstrap-teachpack",4057,91,50,2]),types.vector(["bootstrap2011/bootstrap-teachpack",4060,91,53,2]),types.vector(["bootstrap2011/bootstrap-teachpack",4063,91,56,25]),types.vector(["bootstrap2011/bootstrap-teachpack",4139,92,50,10]),types.vector(["bootstrap2011/bootstrap-teachpack",4031,91,24,119])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4031,91,24,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4032,91,25,24])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4064,91,57,5]),types.vector(["bootstrap2011/bootstrap-teachpack",4070,91,63,17]),types.vector(["bootstrap2011/bootstrap-teachpack",4063,91,56,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4063,91,56,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4064,91,57,5])},"rands":[{"$":"toplevel","depth":6,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4070,91,63,17])}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3886,88,14,6]),types.vector(["bootstrap2011/bootstrap-teachpack",3893,88,21,12]),types.vector(["bootstrap2011/bootstrap-teachpack",3885,88,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3885,88,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3886,88,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3850,87,14,6]),types.vector(["bootstrap2011/bootstrap-teachpack",3857,87,21,12]),types.vector(["bootstrap2011/bootstrap-teachpack",3849,87,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3849,87,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3850,87,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3803,86,24,11]),types.vector(["bootstrap2011/bootstrap-teachpack",3815,86,36,18]),types.vector(["bootstrap2011/bootstrap-teachpack",3802,86,23,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3802,86,23,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3803,86,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",3816,86,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",3827,86,48,5]),types.vector(["bootstrap2011/bootstrap-teachpack",3815,86,36,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",3815,86,36,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",3816,86,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4452,99,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",4452,99,9,10]),types.vector(["bootstrap2011/bootstrap-teachpack",4463,99,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4475,100,9,118]),types.vector(["bootstrap2011/bootstrap-teachpack",4489,100,23,103]),types.vector(["bootstrap2011/bootstrap-teachpack",4475,100,9,118])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4475,100,9,118])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",4475,100,9,118]),types.vector(["bootstrap2011/bootstrap-teachpack",4476,100,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4603,102,9,348]),types.vector(["bootstrap2011/bootstrap-teachpack",4611,102,17,339]),types.vector(["bootstrap2011/bootstrap-teachpack",4603,102,9,348])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4603,102,9,348])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",4603,102,9,348]),types.vector(["bootstrap2011/bootstrap-teachpack",4604,102,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4961,109,9,90]),types.vector(["bootstrap2011/bootstrap-teachpack",4976,110,10,74]),types.vector(["bootstrap2011/bootstrap-teachpack",4961,109,9,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4961,109,9,90])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",4961,109,9,90]),types.vector(["bootstrap2011/bootstrap-teachpack",4962,109,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5071,112,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5080,112,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5091,112,27,38]),types.vector(["bootstrap2011/bootstrap-teachpack",5070,112,6,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5070,112,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5071,112,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5080,112,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5092,112,28,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5099,112,35,29]),types.vector(["bootstrap2011/bootstrap-teachpack",5091,112,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5091,112,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5092,112,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5100,112,36,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5111,112,47,16]),types.vector(["bootstrap2011/bootstrap-teachpack",5099,112,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5099,112,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5100,112,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5112,112,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",5125,112,61,1]),types.vector(["bootstrap2011/bootstrap-teachpack",5111,112,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5111,112,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5112,112,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5138,113,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5147,113,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5158,113,27,38]),types.vector(["bootstrap2011/bootstrap-teachpack",5137,113,6,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5137,113,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5138,113,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5147,113,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5159,113,28,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5166,113,35,29]),types.vector(["bootstrap2011/bootstrap-teachpack",5158,113,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5158,113,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5159,113,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5167,113,36,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5178,113,47,16]),types.vector(["bootstrap2011/bootstrap-teachpack",5166,113,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5166,113,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5167,113,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5179,113,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",5192,113,61,1]),types.vector(["bootstrap2011/bootstrap-teachpack",5178,113,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5178,113,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5179,113,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5205,114,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",5217,114,19,77]),types.vector(["bootstrap2011/bootstrap-teachpack",5304,115,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",5350,115,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5363,116,9,48]),types.vector(["bootstrap2011/bootstrap-teachpack",5204,114,6,208])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5204,114,6,208])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5205,114,7,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5218,114,20,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5228,114,30,12]),types.vector(["bootstrap2011/bootstrap-teachpack",5241,114,43,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5244,114,46,19]),types.vector(["bootstrap2011/bootstrap-teachpack",5264,114,66,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5267,114,69,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5276,114,78,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5284,114,86,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5290,114,92,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5217,114,19,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5217,114,19,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5218,114,20,9])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":18},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5245,114,47,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5251,114,53,11]),types.vector(["bootstrap2011/bootstrap-teachpack",5244,114,46,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5244,114,46,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5245,114,47,5])},"rands":[{"$":"toplevel","depth":13,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5251,114,53,11])}]}}},{"$":"constant","value":false},{"$":"constant","value":types.symbol("default")},{"$":"constant","value":types.symbol("italic")},{"$":"constant","value":types.symbol("bold")},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5305,115,10,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5314,115,19,32]),types.vector(["bootstrap2011/bootstrap-teachpack",5347,115,52,1]),types.vector(["bootstrap2011/bootstrap-teachpack",5304,115,9,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5304,115,9,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5305,115,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5315,115,20,11]),types.vector(["bootstrap2011/bootstrap-teachpack",5327,115,32,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5314,115,19,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5314,115,19,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5315,115,20,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5328,115,33,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5334,115,39,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5327,115,32,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5327,115,32,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5328,115,33,5])},"rands":[{"$":"toplevel","depth":8,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5334,115,39,10])}]}}}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5364,116,10,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5370,116,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5381,116,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5400,116,46,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5363,116,9,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5363,116,9,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5364,116,10,5])},"rands":[{"$":"toplevel","depth":7,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5370,116,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5382,116,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5388,116,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5381,116,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5381,116,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5382,116,28,5])},"rands":[{"$":"toplevel","depth":8,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5388,116,34,10])}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4977,110,11,6]),types.vector(["bootstrap2011/bootstrap-teachpack",4984,110,18,17]),types.vector(["bootstrap2011/bootstrap-teachpack",5002,110,36,17]),types.vector(["bootstrap2011/bootstrap-teachpack",5020,110,54,15]),types.vector(["bootstrap2011/bootstrap-teachpack",5036,110,70,13]),types.vector(["bootstrap2011/bootstrap-teachpack",4976,110,10,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4976,110,10,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4977,110,11,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4985,110,19,13]),types.vector(["bootstrap2011/bootstrap-teachpack",4999,110,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4984,110,18,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4984,110,18,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4985,110,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5003,110,37,13]),types.vector(["bootstrap2011/bootstrap-teachpack",5017,110,51,1]),types.vector(["bootstrap2011/bootstrap-teachpack",5002,110,36,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5002,110,36,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5003,110,37,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5021,110,55,11]),types.vector(["bootstrap2011/bootstrap-teachpack",5033,110,67,1]),types.vector(["bootstrap2011/bootstrap-teachpack",5020,110,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5020,110,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5021,110,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5037,110,71,4]),types.vector(["bootstrap2011/bootstrap-teachpack",5042,110,76,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5036,110,70,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5036,110,70,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5037,110,71,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4612,102,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4616,102,22,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4618,102,24,15]),types.vector(["bootstrap2011/bootstrap-teachpack",4634,102,40,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4616,102,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4619,102,25,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4631,102,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4618,102,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4618,102,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4619,102,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4615,102,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4659,103,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",4670,103,33,29]),types.vector(["bootstrap2011/bootstrap-teachpack",4733,104,33,134]),types.vector(["bootstrap2011/bootstrap-teachpack",4873,106,33,31]),types.vector(["bootstrap2011/bootstrap-teachpack",4658,103,21,253])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4658,103,21,253])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4659,103,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4671,103,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",4682,103,45,16]),types.vector(["bootstrap2011/bootstrap-teachpack",4670,103,33,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4670,103,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4671,103,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4683,103,46,12]),types.vector(["bootstrap2011/bootstrap-teachpack",4696,103,59,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4682,103,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4682,103,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4683,103,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4734,104,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4746,104,46,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4748,104,48,23]),types.vector(["bootstrap2011/bootstrap-teachpack",4772,104,72,23]),types.vector(["bootstrap2011/bootstrap-teachpack",4843,105,47,7]),types.vector(["bootstrap2011/bootstrap-teachpack",4851,105,55,15]),types.vector(["bootstrap2011/bootstrap-teachpack",4733,104,33,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4733,104,33,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4734,104,34,11])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4749,104,49,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4751,104,51,3]),types.vector(["bootstrap2011/bootstrap-teachpack",4755,104,55,15]),types.vector(["bootstrap2011/bootstrap-teachpack",4748,104,48,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4748,104,48,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4749,104,49,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4756,104,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4768,104,68,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4755,104,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4755,104,55,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4756,104,56,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4773,104,73,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4775,104,75,3]),types.vector(["bootstrap2011/bootstrap-teachpack",4779,104,79,15]),types.vector(["bootstrap2011/bootstrap-teachpack",4772,104,72,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4772,104,72,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4773,104,73,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4780,104,80,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4792,104,92,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4779,104,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4779,104,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4780,104,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":9,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4851,105,55,15])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4874,106,34,12]),types.vector(["bootstrap2011/bootstrap-teachpack",4887,106,47,16]),types.vector(["bootstrap2011/bootstrap-teachpack",4873,106,33,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4873,106,33,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4874,106,34,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4888,106,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",4901,106,61,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4887,106,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4887,106,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4888,106,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4934,108,22,12]),types.vector(["bootstrap2011/bootstrap-teachpack",4947,108,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4933,108,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4933,108,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4934,108,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4490,100,24,13]),types.vector(["bootstrap2011/bootstrap-teachpack",4504,100,38,15]),types.vector(["bootstrap2011/bootstrap-teachpack",4520,100,54,28]),types.vector(["bootstrap2011/bootstrap-teachpack",4559,101,38,32]),types.vector(["bootstrap2011/bootstrap-teachpack",4489,100,23,103])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4489,100,23,103])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4490,100,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4505,100,39,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4517,100,51,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4504,100,38,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4504,100,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4505,100,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4560,101,39,14]),types.vector(["bootstrap2011/bootstrap-teachpack",4575,101,54,15]),types.vector(["bootstrap2011/bootstrap-teachpack",4559,101,38,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4559,101,38,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4560,101,39,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",4576,101,55,11]),types.vector(["bootstrap2011/bootstrap-teachpack",4588,101,67,1]),types.vector(["bootstrap2011/bootstrap-teachpack",4575,101,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",4575,101,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",4576,101,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5425,118,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5442,119,3,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5456,120,3,74]),types.vector(["bootstrap2011/bootstrap-teachpack",5544,121,3,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5551,122,3,74]),types.vector(["bootstrap2011/bootstrap-teachpack",5639,123,3,67]),types.vector(["bootstrap2011/bootstrap-teachpack",5719,124,3,41]),types.vector(["bootstrap2011/bootstrap-teachpack",5777,125,3,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5786,126,3,15]),types.vector(["bootstrap2011/bootstrap-teachpack",5805,127,3,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5441,119,2,367])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5441,119,2,367])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5442,119,3,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5457,120,4,4]),types.vector(["bootstrap2011/bootstrap-teachpack",5462,120,9,67]),types.vector(["bootstrap2011/bootstrap-teachpack",5456,120,3,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5456,120,3,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5457,120,4,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5463,120,10,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5474,120,21,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5493,120,40,27]),types.vector(["bootstrap2011/bootstrap-teachpack",5521,120,68,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5462,120,9,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5462,120,9,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5463,120,10,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5475,120,22,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5485,120,32,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5489,120,36,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5474,120,21,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5474,120,21,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5475,120,22,9])},"rands":[{"$":"constant","value":500},{"$":"constant","value":50}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5494,120,41,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5503,120,50,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5506,120,53,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5514,120,61,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5493,120,40,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5493,120,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5494,120,41,8])},"rands":[{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"red"}]}}},{"$":"constant","value":"right"}]}}}]}}},{"$":"constant","value":types.EMPTY},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5552,122,4,4]),types.vector(["bootstrap2011/bootstrap-teachpack",5557,122,9,67]),types.vector(["bootstrap2011/bootstrap-teachpack",5551,122,3,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5551,122,3,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5552,122,4,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5558,122,10,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5569,122,21,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5588,122,40,27]),types.vector(["bootstrap2011/bootstrap-teachpack",5616,122,68,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5557,122,9,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5557,122,9,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5558,122,10,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5570,122,22,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5580,122,32,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5584,122,36,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5569,122,21,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5569,122,21,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5570,122,22,9])},"rands":[{"$":"constant","value":100},{"$":"constant","value":50}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5589,122,41,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5596,122,48,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5599,122,51,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5607,122,59,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5588,122,40,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5588,122,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5589,122,41,6])},"rands":[{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"green"}]}}},{"$":"constant","value":"right"}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5640,123,4,10]),types.vector(["bootstrap2011/bootstrap-teachpack",5651,123,15,18]),types.vector(["bootstrap2011/bootstrap-teachpack",5670,123,34,32]),types.vector(["bootstrap2011/bootstrap-teachpack",5703,123,67,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5639,123,3,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5639,123,3,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5640,123,4,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5652,123,16,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5662,123,26,3]),types.vector(["bootstrap2011/bootstrap-teachpack",5666,123,30,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5651,123,15,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5651,123,15,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5652,123,16,9])},"rands":[{"$":"constant","value":300},{"$":"constant","value":50}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5671,123,35,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5681,123,45,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5684,123,48,2]),types.vector(["bootstrap2011/bootstrap-teachpack",5687,123,51,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5695,123,59,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5670,123,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5670,123,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5671,123,35,9])},"rands":[{"$":"constant","value":30},{"$":"constant","value":30},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",5720,124,4,9]),types.vector(["bootstrap2011/bootstrap-teachpack",5730,124,14,5]),types.vector(["bootstrap2011/bootstrap-teachpack",5736,124,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",5743,124,27,7]),types.vector(["bootstrap2011/bootstrap-teachpack",5751,124,35,8]),types.vector(["bootstrap2011/bootstrap-teachpack",5719,124,3,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",5719,124,3,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5720,124,4,9])},"rands":[{"$":"toplevel","depth":12,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5730,124,14,5])},{"$":"toplevel","depth":12,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5736,124,20,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"yellow"}]}}},{"$":"constant","value":34075},{"$":"constant","value":"I am a Title!"},{"$":"constant","value":17}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",5979,132,9,15])}],"body":{"$":"lam","name":types.symbol("check-collision"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",5979,132,9,15]),types.vector(["bootstrap2011/bootstrap-teachpack",5995,132,25,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6002,132,32,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6009,132,39,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6022,133,3,3]),types.vector(["bootstrap2011/bootstrap-teachpack",6026,133,7,74]),types.vector(["bootstrap2011/bootstrap-teachpack",6021,133,2,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6021,133,2,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6022,133,3,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6027,133,8,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6034,133,15,65]),types.vector(["bootstrap2011/bootstrap-teachpack",6026,133,7,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6026,133,7,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":170,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6027,133,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6035,133,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6042,133,23,40]),types.vector(["bootstrap2011/bootstrap-teachpack",6092,134,23,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6034,133,15,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6034,133,15,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6035,133,16,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",6043,133,24,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6051,133,32,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6059,133,40,8]),types.vector(["bootstrap2011/bootstrap-teachpack",6068,133,49,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6075,133,56,5]),types.vector(["bootstrap2011/bootstrap-teachpack",6058,133,39,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6058,133,39,23])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7026,152,9,16])}],"body":{"$":"lam","name":types.symbol("survival-checker"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7026,152,9,16]),types.vector(["bootstrap2011/bootstrap-teachpack",7043,152,26,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7053,152,36,8]),types.vector(["bootstrap2011/bootstrap-teachpack",7062,152,45,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7073,153,3,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7081,153,11,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7093,154,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7098,154,10,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7108,154,20,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7124,154,36,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7109,154,21,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7117,154,29,5]),types.vector(["bootstrap2011/bootstrap-teachpack",7108,154,20,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7108,154,20,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7109,154,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7125,154,37,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7133,154,45,5]),types.vector(["bootstrap2011/bootstrap-teachpack",7124,154,36,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7124,154,36,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7125,154,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7097,154,9,43])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7093,154,5,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7151,155,10,3]),types.vector(["bootstrap2011/bootstrap-teachpack",7155,155,14,39]),types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7151,155,10,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7156,155,15,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7172,155,31,5]),types.vector(["bootstrap2011/bootstrap-teachpack",7178,155,37,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7185,155,44,8]),types.vector(["bootstrap2011/bootstrap-teachpack",7155,155,14,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7155,155,14,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7156,155,15,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7150,155,9,45])}]}}},"else":{"$":"constant","value":false}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7372,159,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7372,159,9,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7384,159,21,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7401,161,6,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7403,161,8,19]),types.vector(["bootstrap2011/bootstrap-teachpack",7423,161,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7401,161,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7404,161,9,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7420,161,25,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7403,161,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7403,161,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7404,161,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7400,161,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7432,162,6,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7440,162,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7444,162,18,10]),types.vector(["bootstrap2011/bootstrap-teachpack",7455,162,29,39]),types.vector(["bootstrap2011/bootstrap-teachpack",7504,163,29,17]),types.vector(["bootstrap2011/bootstrap-teachpack",7522,163,47,16]),types.vector(["bootstrap2011/bootstrap-teachpack",7443,162,17,96])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7443,162,17,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7444,162,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7456,162,30,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7466,162,40,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7482,162,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7455,162,29,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7455,162,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7456,162,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7467,162,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7469,162,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7466,162,40,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7466,162,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7470,162,44,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7478,162,52,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7469,162,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7469,162,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7470,162,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7483,162,57,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7491,162,65,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7482,162,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7482,162,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7483,162,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7505,163,30,13]),types.vector(["bootstrap2011/bootstrap-teachpack",7519,163,44,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7504,163,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7504,163,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7505,163,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7523,163,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",7536,163,61,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7522,163,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7522,163,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7523,163,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7548,164,6,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7550,164,8,19]),types.vector(["bootstrap2011/bootstrap-teachpack",7570,164,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7548,164,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7551,164,9,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7567,164,25,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7550,164,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7550,164,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7551,164,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7547,164,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7579,165,6,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7587,165,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7591,165,18,10]),types.vector(["bootstrap2011/bootstrap-teachpack",7602,165,29,27]),types.vector(["bootstrap2011/bootstrap-teachpack",7639,166,29,17]),types.vector(["bootstrap2011/bootstrap-teachpack",7657,166,47,16]),types.vector(["bootstrap2011/bootstrap-teachpack",7590,165,17,84])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7590,165,17,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7591,165,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7603,165,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7605,165,32,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7617,165,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7602,165,29,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7602,165,29,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7606,165,33,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7614,165,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7605,165,32,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7605,165,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7606,165,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7618,165,45,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7626,165,53,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7617,165,44,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7617,165,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7618,165,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7640,166,30,13]),types.vector(["bootstrap2011/bootstrap-teachpack",7654,166,44,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7639,166,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7639,166,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7640,166,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7658,166,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",7671,166,61,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7657,166,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7657,166,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7658,166,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7683,167,6,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7685,167,8,19]),types.vector(["bootstrap2011/bootstrap-teachpack",7705,167,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7683,167,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7686,167,9,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7702,167,25,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7685,167,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7685,167,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7686,167,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":3}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7682,167,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7714,168,6,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7722,168,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7726,168,18,10]),types.vector(["bootstrap2011/bootstrap-teachpack",7737,168,29,44]),types.vector(["bootstrap2011/bootstrap-teachpack",7790,169,29,17]),types.vector(["bootstrap2011/bootstrap-teachpack",7808,169,47,16]),types.vector(["bootstrap2011/bootstrap-teachpack",7725,168,17,100])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7725,168,17,100])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7726,168,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7738,168,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7740,168,32,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7752,168,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7764,168,56,16]),types.vector(["bootstrap2011/bootstrap-teachpack",7737,168,29,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7737,168,29,44])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7741,168,33,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7749,168,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7740,168,32,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7740,168,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7741,168,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7753,168,45,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7761,168,53,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7752,168,44,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7752,168,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7753,168,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7765,168,57,12]),types.vector(["bootstrap2011/bootstrap-teachpack",7778,168,70,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7764,168,56,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7764,168,56,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7765,168,57,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7791,169,30,13]),types.vector(["bootstrap2011/bootstrap-teachpack",7805,169,44,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7790,169,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7790,169,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7791,169,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7809,169,48,12]),types.vector(["bootstrap2011/bootstrap-teachpack",7822,169,61,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7808,169,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7808,169,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7809,169,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439]),types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439]),types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7389,160,2,439])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7840,171,9,11])}],"body":{"$":"lam","name":types.symbol("random-posn"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7840,171,9,11]),types.vector(["bootstrap2011/bootstrap-teachpack",7852,171,21,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7862,172,2,1608]),types.vector(["bootstrap2011/bootstrap-teachpack",7871,172,11,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7886,173,11,3]),types.vector(["bootstrap2011/bootstrap-teachpack",7862,172,2,1608])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7862,172,2,1608])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",7862,172,2,1608]),types.vector(["bootstrap2011/bootstrap-teachpack",7869,172,9,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7884,173,9,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7919,175,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",7928,175,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7935,175,23,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7919,175,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7918,175,6,24])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7951,176,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",7961,176,17,8]),types.vector(["bootstrap2011/bootstrap-teachpack",7970,176,26,15]),types.vector(["bootstrap2011/bootstrap-teachpack",7950,176,6,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7950,176,6,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7951,176,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7962,176,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7964,176,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",7966,176,22,2]),types.vector(["bootstrap2011/bootstrap-teachpack",7961,176,17,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7961,176,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7962,176,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7971,176,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7978,176,34,6]),types.vector(["bootstrap2011/bootstrap-teachpack",7970,176,26,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7970,176,26,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7971,176,27,6])},"rands":[{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7978,176,34,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7995,177,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8004,177,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8011,177,23,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7995,177,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7994,177,6,25])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8028,178,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8038,178,17,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8050,178,29,15]),types.vector(["bootstrap2011/bootstrap-teachpack",8027,178,6,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8027,178,6,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8028,178,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8039,178,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8041,178,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8043,178,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8038,178,17,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8038,178,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8039,178,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8043,178,22,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8051,178,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8058,178,37,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8050,178,29,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8050,178,29,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8051,178,30,6])},"rands":[{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8058,178,37,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8075,179,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8084,179,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8091,179,23,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8075,179,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8074,179,6,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8106,180,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8116,180,17,14]),types.vector(["bootstrap2011/bootstrap-teachpack",8131,180,32,12]),types.vector(["bootstrap2011/bootstrap-teachpack",8105,180,6,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8105,180,6,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8106,180,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8117,180,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8124,180,25,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8116,180,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8116,180,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8117,180,18,6])},"rands":[{"$":"toplevel","depth":3,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8124,180,25,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8132,180,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8134,180,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8136,180,37,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8131,180,32,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8131,180,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8132,180,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8136,180,37,6])}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8153,181,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8162,181,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8169,181,23,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8153,181,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8152,181,6,26])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8187,182,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8197,182,17,14]),types.vector(["bootstrap2011/bootstrap-teachpack",8212,182,32,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8186,182,6,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8186,182,6,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8187,182,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8198,182,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8205,182,25,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8197,182,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8197,182,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8198,182,18,6])},"rands":[{"$":"toplevel","depth":3,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8205,182,25,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8213,182,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8215,182,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8217,182,37,2]),types.vector(["bootstrap2011/bootstrap-teachpack",8212,182,32,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8212,182,32,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8213,182,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8230,183,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8239,183,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8246,183,23,13]),types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8230,183,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom-left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8229,183,6,31])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8269,184,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8282,185,7,129]),types.vector(["bootstrap2011/bootstrap-teachpack",8268,184,6,144])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8268,184,6,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8269,184,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8283,185,8,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8290,186,8,71]),types.vector(["bootstrap2011/bootstrap-teachpack",8363,187,8,47]),types.vector(["bootstrap2011/bootstrap-teachpack",8282,185,7,129])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8282,185,7,129])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8283,185,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8291,186,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8301,186,19,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8331,186,49,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8290,186,8,71])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8290,186,8,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8291,186,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8302,186,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8304,186,22,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8301,186,19,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8301,186,19,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8302,186,20,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8332,186,50,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8339,186,57,20]),types.vector(["bootstrap2011/bootstrap-teachpack",8331,186,49,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8331,186,49,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8332,186,50,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8340,186,58,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8346,186,64,12]),types.vector(["bootstrap2011/bootstrap-teachpack",8339,186,57,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8339,186,57,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8340,186,58,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8347,186,65,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8349,186,67,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8351,186,69,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8346,186,64,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8346,186,64,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8347,186,65,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8351,186,69,6])}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8364,187,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8374,187,19,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8404,187,49,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8363,187,8,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8363,187,8,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8364,187,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8375,187,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8382,187,27,19]),types.vector(["bootstrap2011/bootstrap-teachpack",8374,187,19,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8374,187,19,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8375,187,20,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8383,187,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8389,187,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8382,187,27,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8382,187,27,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8383,187,28,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8390,187,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8392,187,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8394,187,39,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8389,187,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8389,187,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8390,187,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8394,187,39,5])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8405,187,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8407,187,52,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8404,187,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8404,187,49,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8405,187,50,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8421,188,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8430,188,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8437,188,23,14]),types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8421,188,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"bottom-right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8420,188,6,32])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8460,189,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8472,190,7,125]),types.vector(["bootstrap2011/bootstrap-teachpack",8459,189,6,139])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8459,189,6,139])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8460,189,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8473,190,8,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8479,191,8,47]),types.vector(["bootstrap2011/bootstrap-teachpack",8528,192,8,68]),types.vector(["bootstrap2011/bootstrap-teachpack",8472,190,7,125])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8472,190,7,125])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8473,190,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8480,191,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8490,191,19,21]),types.vector(["bootstrap2011/bootstrap-teachpack",8520,191,49,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8479,191,8,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8479,191,8,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8480,191,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8491,191,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8493,191,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8499,191,28,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8490,191,19,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8490,191,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8491,191,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8493,191,22,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8500,191,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8502,191,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8504,191,33,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8499,191,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8499,191,28,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8500,191,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8504,191,33,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8521,191,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8523,191,52,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8520,191,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8520,191,49,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8521,191,50,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8529,192,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8539,192,19,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8566,192,46,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8528,192,8,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8528,192,8,68])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8529,192,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8540,192,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8542,192,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8548,192,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8539,192,19,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8539,192,19,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8540,192,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8542,192,22,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8567,192,47,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8574,192,54,20]),types.vector(["bootstrap2011/bootstrap-teachpack",8566,192,46,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8566,192,46,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8567,192,47,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8575,192,55,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8581,192,61,12]),types.vector(["bootstrap2011/bootstrap-teachpack",8574,192,54,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8574,192,54,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8575,192,55,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8582,192,62,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8584,192,64,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8586,192,66,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8581,192,61,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8581,192,61,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8582,192,62,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8586,192,66,6])}]}}}]}}}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8607,193,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8616,193,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8623,193,23,10]),types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8607,193,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top-left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8606,193,6,28])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8642,194,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8654,195,7,129]),types.vector(["bootstrap2011/bootstrap-teachpack",8641,194,6,143])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8641,194,6,143])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8642,194,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8655,195,8,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8661,196,8,65]),types.vector(["bootstrap2011/bootstrap-teachpack",8728,197,8,54]),types.vector(["bootstrap2011/bootstrap-teachpack",8654,195,7,129])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8654,195,7,129])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8655,195,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8662,196,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8672,196,19,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8702,196,49,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8661,196,8,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8661,196,8,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8662,196,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8673,196,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8675,196,22,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8672,196,19,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8672,196,19,5])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8673,196,20,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8703,196,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8705,196,52,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8712,196,59,12]),types.vector(["bootstrap2011/bootstrap-teachpack",8702,196,49,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8702,196,49,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8703,196,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8705,196,52,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8713,196,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8715,196,62,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8717,196,64,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8712,196,59,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8712,196,59,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8713,196,60,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8717,196,64,6])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8729,197,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8739,197,19,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8769,197,49,12]),types.vector(["bootstrap2011/bootstrap-teachpack",8728,197,8,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8728,197,8,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8729,197,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8740,197,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8747,197,27,19]),types.vector(["bootstrap2011/bootstrap-teachpack",8739,197,19,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8739,197,19,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8740,197,20,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8748,197,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8754,197,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8747,197,27,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8747,197,27,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8748,197,28,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8755,197,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8757,197,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8759,197,39,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8754,197,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8754,197,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8755,197,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8759,197,39,5])}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8770,197,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8772,197,52,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8779,197,59,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8769,197,49,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8769,197,49,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8770,197,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8772,197,52,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8793,198,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8802,198,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8809,198,23,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8793,198,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"top-right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8792,198,6,29])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8829,199,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8842,200,7,130]),types.vector(["bootstrap2011/bootstrap-teachpack",8828,199,6,145])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8828,199,6,145])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8829,199,7,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8843,200,8,4]),types.vector(["bootstrap2011/bootstrap-teachpack",8850,201,8,54]),types.vector(["bootstrap2011/bootstrap-teachpack",8906,202,8,65]),types.vector(["bootstrap2011/bootstrap-teachpack",8842,200,7,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8842,200,7,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8843,200,8,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8851,201,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8861,201,19,21]),types.vector(["bootstrap2011/bootstrap-teachpack",8891,201,49,12]),types.vector(["bootstrap2011/bootstrap-teachpack",8850,201,8,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8850,201,8,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8851,201,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8862,201,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8864,201,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8870,201,28,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8861,201,19,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8861,201,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8862,201,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8864,201,22,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8871,201,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8873,201,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8875,201,33,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8870,201,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8870,201,28,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8871,201,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8875,201,33,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8892,201,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8894,201,52,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8901,201,59,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8891,201,49,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8891,201,49,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8892,201,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8894,201,52,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8907,202,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",8917,202,19,11]),types.vector(["bootstrap2011/bootstrap-teachpack",8947,202,49,23]),types.vector(["bootstrap2011/bootstrap-teachpack",8906,202,8,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8906,202,8,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8907,202,9,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8918,202,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8920,202,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",8926,202,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8917,202,19,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8917,202,19,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8918,202,20,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8920,202,22,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8948,202,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8950,202,52,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8957,202,59,12]),types.vector(["bootstrap2011/bootstrap-teachpack",8947,202,49,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8947,202,49,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8948,202,50,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8950,202,52,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8958,202,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8960,202,62,1]),types.vector(["bootstrap2011/bootstrap-teachpack",8962,202,64,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8957,202,59,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8957,202,59,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8958,202,60,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":9,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8962,202,64,6])}]}}}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",8982,203,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",8991,203,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",8998,203,23,10]),types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",8982,203,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"onscreen"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",8981,203,6,28])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9017,204,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9027,204,17,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9063,205,17,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9016,204,6,81])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9016,204,6,81])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9017,204,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9028,204,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9030,204,20,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9038,204,28,20]),types.vector(["bootstrap2011/bootstrap-teachpack",9027,204,17,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9027,204,17,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9028,204,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9031,204,21,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9033,204,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9035,204,25,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9030,204,20,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9030,204,20,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9031,204,21,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9039,204,29,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9046,204,36,11]),types.vector(["bootstrap2011/bootstrap-teachpack",9038,204,28,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9038,204,28,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9039,204,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9047,204,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9049,204,39,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9055,204,45,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9046,204,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9046,204,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9047,204,37,1])},"rands":[{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9049,204,39,5])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9064,205,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9066,205,20,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9074,205,28,21]),types.vector(["bootstrap2011/bootstrap-teachpack",9063,205,17,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9063,205,17,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9064,205,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9067,205,21,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9069,205,23,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9071,205,25,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9066,205,20,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9066,205,20,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9067,205,21,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9075,205,29,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9082,205,36,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9074,205,28,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9074,205,28,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9075,205,29,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9083,205,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9085,205,39,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9092,205,46,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9082,205,36,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9082,205,36,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9083,205,37,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9085,205,39,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9106,206,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",9115,206,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9122,206,23,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9106,206,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"screen-left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9105,206,6,31])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9144,207,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9154,207,17,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9168,207,31,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9143,207,6,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9143,207,6,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9144,207,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9155,207,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9157,207,20,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9163,207,26,3]),types.vector(["bootstrap2011/bootstrap-teachpack",9154,207,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9154,207,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9155,207,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9157,207,20,5])},{"$":"constant","value":types.rational(1, 4)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9169,207,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9171,207,34,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9179,207,42,21]),types.vector(["bootstrap2011/bootstrap-teachpack",9168,207,31,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9168,207,31,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9169,207,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9172,207,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9174,207,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9176,207,39,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9171,207,34,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9171,207,34,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9172,207,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9180,207,43,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9187,207,50,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9179,207,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9179,207,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9180,207,43,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9188,207,51,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9190,207,53,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9197,207,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9187,207,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9187,207,50,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9188,207,51,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9190,207,53,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9211,208,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",9220,208,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9227,208,23,14]),types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9211,208,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"screen-right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9210,208,6,32])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9250,209,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9260,209,17,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9274,209,31,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9249,209,6,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9249,209,6,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9250,209,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9261,209,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9263,209,20,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9269,209,26,3]),types.vector(["bootstrap2011/bootstrap-teachpack",9260,209,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9260,209,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9261,209,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9263,209,20,5])},{"$":"constant","value":types.rational(3, 4)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9275,209,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9277,209,34,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9285,209,42,21]),types.vector(["bootstrap2011/bootstrap-teachpack",9274,209,31,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9274,209,31,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9275,209,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9278,209,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9280,209,37,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9282,209,39,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9277,209,34,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9277,209,34,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9278,209,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9286,209,43,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9293,209,50,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9285,209,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9285,209,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9286,209,43,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9294,209,51,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9296,209,53,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9303,209,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9293,209,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9293,209,50,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9294,209,51,1])},"rands":[{"$":"toplevel","depth":7,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9296,209,53,6])},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9317,210,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",9326,210,16,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9333,210,23,8]),types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9317,210,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"center"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9316,210,6,26])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9350,211,7,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9360,211,17,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9374,211,31,14]),types.vector(["bootstrap2011/bootstrap-teachpack",9349,211,6,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9349,211,6,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9350,211,7,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9361,211,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9363,211,20,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9369,211,26,3]),types.vector(["bootstrap2011/bootstrap-teachpack",9360,211,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9360,211,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9361,211,18,1])},"rands":[{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9363,211,20,5])},{"$":"constant","value":types.rational(1, 2)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9375,211,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9377,211,34,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9384,211,41,3]),types.vector(["bootstrap2011/bootstrap-teachpack",9374,211,31,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9374,211,31,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9375,211,32,1])},"rands":[{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9377,211,34,6])},{"$":"constant","value":types.rational(1, 2)}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4]),types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},{"$":"toplevel","depth":4,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9397,212,6,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9403,212,12,5]),types.vector(["bootstrap2011/bootstrap-teachpack",9409,212,18,51]),types.vector(["bootstrap2011/bootstrap-teachpack",9402,212,11,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9402,212,11,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9403,212,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9410,212,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9417,212,26,35]),types.vector(["bootstrap2011/bootstrap-teachpack",9453,212,62,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9409,212,18,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9409,212,18,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":164,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9410,212,19,6])},"rands":[{"$":"constant","value":"don't know what position ~a means"},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563]),types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563]),types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7906,174,4,1563])}]}}}}}}}}}}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",7872,172,12,7]),types.vector(["bootstrap2011/bootstrap-teachpack",7871,172,11,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",7871,172,11,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",7872,172,12,7])},"rands":[]}}},{"$":"constant","value":types.rational(1, 3)}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9519,216,9,13])}],"body":{"$":"lam","name":types.symbol("get-direction"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",9519,216,9,13]),types.vector(["bootstrap2011/bootstrap-teachpack",9533,216,23,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9551,217,9,69]),types.vector(["bootstrap2011/bootstrap-teachpack",9562,217,20,57]),types.vector(["bootstrap2011/bootstrap-teachpack",9551,217,9,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9551,217,9,69])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",9551,217,9,69]),types.vector(["bootstrap2011/bootstrap-teachpack",9552,217,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9630,218,9,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9638,218,17,24]),types.vector(["bootstrap2011/bootstrap-teachpack",9630,218,9,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9630,218,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",9630,218,9,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9631,218,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9673,219,9,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9681,219,17,24]),types.vector(["bootstrap2011/bootstrap-teachpack",9673,219,9,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9673,219,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",9673,219,9,33]),types.vector(["bootstrap2011/bootstrap-teachpack",9674,219,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31]),types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9713,220,5,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9717,220,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9722,220,14,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9724,220,16,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9726,220,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9722,220,14,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9721,220,13,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9717,220,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9735,220,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9737,220,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9739,220,31,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9735,220,27,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9734,220,26,12])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9716,220,8,31])}]}}},"then":{"$":"constant","value":"onscreen"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9776,222,9,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9780,222,13,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9782,222,15,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9795,222,28,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9780,222,13,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9783,222,16,3]),types.vector(["bootstrap2011/bootstrap-teachpack",9787,222,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9782,222,15,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9782,222,15,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9783,222,16,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9796,222,29,3]),types.vector(["bootstrap2011/bootstrap-teachpack",9800,222,33,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9795,222,28,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9795,222,28,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9796,222,29,3])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9779,222,12,29])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9822,223,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9826,223,17,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9828,223,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9835,223,26,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9826,223,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9825,223,16,12])}]}}},"then":{"$":"constant","value":"top"},"else":{"$":"constant","value":"bottom"}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9867,224,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9871,224,17,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9873,224,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9880,224,26,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9871,224,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9870,224,16,12])}]}}},"then":{"$":"constant","value":"right"},"else":{"$":"constant","value":"left"}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9682,219,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9684,219,20,18]),types.vector(["bootstrap2011/bootstrap-teachpack",9703,219,39,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9681,219,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9681,219,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9682,219,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9685,219,21,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9692,219,28,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9684,219,20,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9684,219,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9685,219,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9639,218,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9641,218,20,18]),types.vector(["bootstrap2011/bootstrap-teachpack",9660,218,39,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9638,218,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9638,218,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9639,218,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9642,218,21,6]),types.vector(["bootstrap2011/bootstrap-teachpack",9649,218,28,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9641,218,20,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9641,218,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9642,218,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9563,217,21,10]),types.vector(["bootstrap2011/bootstrap-teachpack",9574,217,32,44]),types.vector(["bootstrap2011/bootstrap-teachpack",9562,217,20,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9562,217,20,57])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9563,217,21,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9575,217,33,7]),types.vector(["bootstrap2011/bootstrap-teachpack",9583,217,41,34]),types.vector(["bootstrap2011/bootstrap-teachpack",9574,217,32,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9574,217,32,44])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9584,217,42,10]),types.vector(["bootstrap2011/bootstrap-teachpack",9595,217,53,15]),types.vector(["bootstrap2011/bootstrap-teachpack",9611,217,69,2]),types.vector(["bootstrap2011/bootstrap-teachpack",9614,217,72,2]),types.vector(["bootstrap2011/bootstrap-teachpack",9583,217,41,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9583,217,41,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9584,217,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",9596,217,54,9]),types.vector(["bootstrap2011/bootstrap-teachpack",9606,217,64,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9608,217,66,1]),types.vector(["bootstrap2011/bootstrap-teachpack",9595,217,53,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",9595,217,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",9596,217,54,9])},"rands":[{"$":"constant","value":1},{"$":"constant","value":1}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10036,229,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10036,229,9,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10042,229,15,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10048,229,21,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10061,230,2,312]),types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219]),types.vector(["bootstrap2011/bootstrap-teachpack",10061,230,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10061,230,2,312])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10061,230,2,312]),types.vector(["bootstrap2011/bootstrap-teachpack",10068,230,9,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10311,236,5,10]),types.vector(["bootstrap2011/bootstrap-teachpack",10322,236,16,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10343,236,37,21]),types.vector(["bootstrap2011/bootstrap-teachpack",10365,236,59,6]),types.vector(["bootstrap2011/bootstrap-teachpack",10310,236,4,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10310,236,4,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10311,236,5,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10323,236,17,11]),types.vector(["bootstrap2011/bootstrap-teachpack",10335,236,29,6]),types.vector(["bootstrap2011/bootstrap-teachpack",10322,236,16,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10322,236,16,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10323,236,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10344,236,38,13]),types.vector(["bootstrap2011/bootstrap-teachpack",10358,236,52,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10343,236,37,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10343,236,37,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10344,236,38,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10104,232,13,10]),types.vector(["bootstrap2011/bootstrap-teachpack",10115,232,24,7]),types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10104,232,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10103,232,12,20])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10125,232,34,13]),types.vector(["bootstrap2011/bootstrap-teachpack",10139,232,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",10124,232,33,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10124,232,33,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10125,232,34,13])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10162,233,13,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10168,233,19,7]),types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10162,233,13,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10161,233,12,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10183,233,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10188,233,39,7]),types.vector(["bootstrap2011/bootstrap-teachpack",10182,233,33,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10182,233,33,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10183,233,34,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10211,234,13,7]),types.vector(["bootstrap2011/bootstrap-teachpack",10219,234,21,7]),types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10211,234,13,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10210,234,12,17])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},{"$":"toplevel","depth":5,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10252,235,12,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10258,235,18,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10264,235,24,36]),types.vector(["bootstrap2011/bootstrap-teachpack",10257,235,17,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10257,235,17,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10258,235,18,5])},"rands":[{"$":"constant","value":"strange being source specification"}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219]),types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219]),types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10084,231,9,219])}]}}}}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10538,240,9,8])}],"body":{"$":"lam","name":types.symbol("move-all"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10538,240,9,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10547,240,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",10554,240,25,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10559,240,30,10])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10574,241,3,3]),types.vector(["bootstrap2011/bootstrap-teachpack",10578,241,7,73]),types.vector(["bootstrap2011/bootstrap-teachpack",10660,245,7,6]),types.vector(["bootstrap2011/bootstrap-teachpack",10573,241,2,94])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10573,241,2,94])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10574,241,3,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10579,241,8,6]),types.vector(["bootstrap2011/bootstrap-teachpack",10587,241,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10594,242,10,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10598,242,14,10]),types.vector(["bootstrap2011/bootstrap-teachpack",10609,242,25,1]),types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10597,242,13,14])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10620,243,14,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10625,243,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",10619,243,13,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10619,243,13,8])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10636,244,14,5]),types.vector(["bootstrap2011/bootstrap-teachpack",10642,244,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",10644,244,22,4]),types.vector(["bootstrap2011/bootstrap-teachpack",10635,244,13,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10635,244,13,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10636,244,14,5])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10900,250,9,8])}],"body":{"$":"lam","name":types.symbol("keypress"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",10900,250,9,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10909,250,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",10911,250,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",10915,250,24,13]),types.vector(["bootstrap2011/bootstrap-teachpack",10929,250,38,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10954,252,6,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10963,252,15,3]),types.vector(["bootstrap2011/bootstrap-teachpack",10967,252,19,9]),types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10954,252,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"release"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10953,252,5,24])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10987,253,6,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10996,253,15,3]),types.vector(["bootstrap2011/bootstrap-teachpack",11000,253,19,8]),types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10987,253,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"escape"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10986,253,5,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11011,253,30,16]),types.vector(["bootstrap2011/bootstrap-teachpack",11028,253,47,1]),types.vector(["bootstrap2011/bootstrap-teachpack",11030,253,49,2]),types.vector(["bootstrap2011/bootstrap-teachpack",11010,253,29,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11010,253,29,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11011,253,30,16])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11041,254,6,8]),types.vector(["bootstrap2011/bootstrap-teachpack",11050,254,15,3]),types.vector(["bootstrap2011/bootstrap-teachpack",11054,254,19,3]),types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11041,254,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11040,254,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11060,254,25,16]),types.vector(["bootstrap2011/bootstrap-teachpack",11077,254,42,1]),types.vector(["bootstrap2011/bootstrap-teachpack",11079,254,44,36]),types.vector(["bootstrap2011/bootstrap-teachpack",11059,254,24,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11059,254,24,57])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11060,254,25,16])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11080,254,45,6]),types.vector(["bootstrap2011/bootstrap-teachpack",11087,254,52,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11099,254,64,15]),types.vector(["bootstrap2011/bootstrap-teachpack",11079,254,44,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11079,254,44,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11080,254,45,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11088,254,53,9]),types.vector(["bootstrap2011/bootstrap-teachpack",11087,254,52,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11087,254,52,11])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11100,254,65,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11112,254,77,1]),types.vector(["bootstrap2011/bootstrap-teachpack",11099,254,64,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11099,254,64,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11100,254,65,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},{"$":"toplevel","depth":4,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11124,255,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11130,255,11,17]),types.vector(["bootstrap2011/bootstrap-teachpack",11148,255,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",11150,255,31,36]),types.vector(["bootstrap2011/bootstrap-teachpack",11129,255,10,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11129,255,10,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11130,255,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11151,255,32,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11165,255,46,16]),types.vector(["bootstrap2011/bootstrap-teachpack",11182,255,63,3]),types.vector(["bootstrap2011/bootstrap-teachpack",11150,255,31,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11150,255,31,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11166,255,47,12]),types.vector(["bootstrap2011/bootstrap-teachpack",11179,255,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",11165,255,46,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11165,255,46,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11166,255,47,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247]),types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247]),types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",10942,251,2,247])}]}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11201,257,9,9])}],"body":{"$":"lam","name":types.symbol("make-game"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",11201,257,9,9]),types.vector(["bootstrap2011/bootstrap-teachpack",11211,257,19,5]),types.vector(["bootstrap2011/bootstrap-teachpack",11217,257,25,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11229,257,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11240,257,48,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11251,257,59,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11265,257,73,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11276,257,84,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11290,257,98,9]),types.vector(["bootstrap2011/bootstrap-teachpack",11300,257,108,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11314,257,122,14]),types.vector(["bootstrap2011/bootstrap-teachpack",11329,257,137,17]),types.vector(["bootstrap2011/bootstrap-teachpack",11347,257,155,15]),types.vector(["bootstrap2011/bootstrap-teachpack",11363,257,171,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11375,257,183,8]),types.vector(["bootstrap2011/bootstrap-teachpack",11384,257,192,7]),types.vector(["bootstrap2011/bootstrap-teachpack",11392,257,200,8])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11405,258,3,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11410,258,8,5]),types.vector(["bootstrap2011/bootstrap-teachpack",11416,258,14,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11428,258,26,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11439,258,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11450,258,48,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11464,258,62,10]),types.vector(["bootstrap2011/bootstrap-teachpack",11475,258,73,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11489,258,87,9]),types.vector(["bootstrap2011/bootstrap-teachpack",11499,258,97,13]),types.vector(["bootstrap2011/bootstrap-teachpack",11513,258,111,14]),types.vector(["bootstrap2011/bootstrap-teachpack",11528,258,126,17]),types.vector(["bootstrap2011/bootstrap-teachpack",11546,258,144,15]),types.vector(["bootstrap2011/bootstrap-teachpack",11562,258,160,11]),types.vector(["bootstrap2011/bootstrap-teachpack",11574,258,172,8]),types.vector(["bootstrap2011/bootstrap-teachpack",11583,258,181,7]),types.vector(["bootstrap2011/bootstrap-teachpack",11591,258,189,8]),types.vector(["bootstrap2011/bootstrap-teachpack",11404,258,2,196])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11404,258,2,196])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11405,258,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11611,259,9,4])}],"body":{"$":"lam","name":types.symbol("play"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",11611,259,9,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11616,259,14,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",11625,260,3,5]),types.vector(["bootstrap2011/bootstrap-teachpack",11631,260,9,12]),types.vector(["bootstrap2011/bootstrap-teachpack",11644,260,22,4]),types.vector(["bootstrap2011/bootstrap-teachpack",11624,260,2,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",11624,260,2,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":180,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11625,260,3,5])},"rands":[{"$":"toplevel","depth":2,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11631,260,9,12])},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",11953,266,9,12])}],"body":{"$":"lam","name":types.symbol("animate/proc"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",11953,266,9,12]),types.vector(["bootstrap2011/bootstrap-teachpack",11966,266,22,5]),types.vector(["bootstrap2011/bootstrap-teachpack",11972,266,28,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12006,267,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12026,268,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12040,268,36,14]),types.vector(["bootstrap2011/bootstrap-teachpack",12063,269,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12077,269,36,14]),types.vector(["bootstrap2011/bootstrap-teachpack",12100,270,22,9]),types.vector(["bootstrap2011/bootstrap-teachpack",12114,270,36,14]),types.vector(["bootstrap2011/bootstrap-teachpack",12151,271,22,13]),types.vector(["bootstrap2011/bootstrap-teachpack",12165,271,36,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12206,272,22,15]),types.vector(["bootstrap2011/bootstrap-teachpack",12222,272,38,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12234,272,50,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12265,273,22,9]),types.vector(["bootstrap2011/bootstrap-teachpack",12275,273,32,10])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12301,275,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12310,275,14,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12322,275,26,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12300,275,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12300,275,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12301,275,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12310,275,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12340,276,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12349,276,14,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12360,276,25,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12339,276,4,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12339,276,4,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12340,276,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12349,276,14,10])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12377,277,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12386,277,14,13]),types.vector(["bootstrap2011/bootstrap-teachpack",12400,277,28,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12376,277,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12376,277,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12377,277,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12386,277,14,13])},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12418,278,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12427,278,14,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12438,278,25,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12417,278,4,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12417,278,4,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12418,278,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12427,278,14,10])},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12453,279,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12462,279,14,17]),types.vector(["bootstrap2011/bootstrap-teachpack",12480,279,32,15]),types.vector(["bootstrap2011/bootstrap-teachpack",12452,279,4,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12452,279,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12453,279,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12462,279,14,17])},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12508,280,11,88]),types.vector(["bootstrap2011/bootstrap-teachpack",12516,280,19,79]),types.vector(["bootstrap2011/bootstrap-teachpack",12508,280,11,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12508,280,11,88])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12508,280,11,88]),types.vector(["bootstrap2011/bootstrap-teachpack",12509,280,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,10,11,12,16,17],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12608,282,11,65]),types.vector(["bootstrap2011/bootstrap-teachpack",12620,282,23,52]),types.vector(["bootstrap2011/bootstrap-teachpack",12608,282,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12608,282,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12608,282,11,65]),types.vector(["bootstrap2011/bootstrap-teachpack",12609,282,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12685,283,11,65]),types.vector(["bootstrap2011/bootstrap-teachpack",12697,283,23,52]),types.vector(["bootstrap2011/bootstrap-teachpack",12685,283,11,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12685,283,11,65])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12685,283,11,65]),types.vector(["bootstrap2011/bootstrap-teachpack",12686,283,12,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12755,284,11,122]),types.vector(["bootstrap2011/bootstrap-teachpack",12780,285,12,96]),types.vector(["bootstrap2011/bootstrap-teachpack",12755,284,11,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12755,284,11,122])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12755,284,11,122]),types.vector(["bootstrap2011/bootstrap-teachpack",12756,284,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12889,287,11,121]),types.vector(["bootstrap2011/bootstrap-teachpack",12914,288,12,95]),types.vector(["bootstrap2011/bootstrap-teachpack",12889,287,11,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12889,287,11,121])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12889,287,11,121]),types.vector(["bootstrap2011/bootstrap-teachpack",12890,287,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13022,290,11,44]),types.vector(["bootstrap2011/bootstrap-teachpack",13037,290,26,28]),types.vector(["bootstrap2011/bootstrap-teachpack",13022,290,11,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13022,290,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13022,290,11,44]),types.vector(["bootstrap2011/bootstrap-teachpack",13023,290,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13078,291,11,44]),types.vector(["bootstrap2011/bootstrap-teachpack",13093,291,26,28]),types.vector(["bootstrap2011/bootstrap-teachpack",13078,291,11,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13078,291,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13078,291,11,44]),types.vector(["bootstrap2011/bootstrap-teachpack",13079,291,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13134,292,11,52]),types.vector(["bootstrap2011/bootstrap-teachpack",13153,292,30,32]),types.vector(["bootstrap2011/bootstrap-teachpack",13134,292,11,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13134,292,11,52])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13134,292,11,52]),types.vector(["bootstrap2011/bootstrap-teachpack",13135,292,12,17])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13198,293,11,257]),types.vector(["bootstrap2011/bootstrap-teachpack",13207,293,20,247]),types.vector(["bootstrap2011/bootstrap-teachpack",13198,293,11,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13198,293,11,257])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13198,293,11,257]),types.vector(["bootstrap2011/bootstrap-teachpack",13199,293,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,13,14,15,16],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13467,297,11,257]),types.vector(["bootstrap2011/bootstrap-teachpack",13476,297,20,247]),types.vector(["bootstrap2011/bootstrap-teachpack",13467,297,11,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13467,297,11,257])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13467,297,11,257]),types.vector(["bootstrap2011/bootstrap-teachpack",13468,297,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13736,301,11,17]),types.vector(["bootstrap2011/bootstrap-teachpack",13749,301,24,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13736,301,11,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13736,301,11,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13736,301,11,17]),types.vector(["bootstrap2011/bootstrap-teachpack",13737,301,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13765,302,11,417]),types.vector(["bootstrap2011/bootstrap-teachpack",13780,302,26,401]),types.vector(["bootstrap2011/bootstrap-teachpack",13765,302,11,417])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13765,302,11,417])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13765,302,11,417]),types.vector(["bootstrap2011/bootstrap-teachpack",13766,302,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14194,309,11,125]),types.vector(["bootstrap2011/bootstrap-teachpack",14205,309,22,113]),types.vector(["bootstrap2011/bootstrap-teachpack",14194,309,11,125])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14194,309,11,125])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14194,309,11,125]),types.vector(["bootstrap2011/bootstrap-teachpack",14195,309,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,8,9,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14331,312,11,108]),types.vector(["bootstrap2011/bootstrap-teachpack",14341,312,21,97]),types.vector(["bootstrap2011/bootstrap-teachpack",14331,312,11,108])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14331,312,11,108])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14331,312,11,108]),types.vector(["bootstrap2011/bootstrap-teachpack",14332,312,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14451,315,11,215]),types.vector(["bootstrap2011/bootstrap-teachpack",14458,315,18,207]),types.vector(["bootstrap2011/bootstrap-teachpack",14451,315,11,215])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14451,315,11,215])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14451,315,11,215]),types.vector(["bootstrap2011/bootstrap-teachpack",14452,315,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,7,8,9,13,14,15],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14678,320,11,542]),types.vector(["bootstrap2011/bootstrap-teachpack",14689,320,22,530]),types.vector(["bootstrap2011/bootstrap-teachpack",14678,320,11,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14678,320,11,542])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14678,320,11,542]),types.vector(["bootstrap2011/bootstrap-teachpack",14679,320,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15232,326,11,2741]),types.vector(["bootstrap2011/bootstrap-teachpack",15246,326,25,2726]),types.vector(["bootstrap2011/bootstrap-teachpack",15232,326,11,2741])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15232,326,11,2741])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15232,326,11,2741]),types.vector(["bootstrap2011/bootstrap-teachpack",15233,326,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17982,368,7,8]),types.vector(["bootstrap2011/bootstrap-teachpack",17991,368,16,5]),types.vector(["bootstrap2011/bootstrap-teachpack",18013,369,16,47]),types.vector(["bootstrap2011/bootstrap-teachpack",18077,370,16,25]),types.vector(["bootstrap2011/bootstrap-teachpack",18119,371,16,22]),types.vector(["bootstrap2011/bootstrap-teachpack",18158,372,16,18]),types.vector(["bootstrap2011/bootstrap-teachpack",17981,368,6,196])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17981,368,6,196])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17982,368,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18014,369,17,9]),types.vector(["bootstrap2011/bootstrap-teachpack",18024,369,27,35]),types.vector(["bootstrap2011/bootstrap-teachpack",18013,369,16,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18013,369,16,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18014,369,17,9])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",18025,369,28,6]),types.vector(["bootstrap2011/bootstrap-teachpack",18033,369,36,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18037,369,40,1]),types.vector(["bootstrap2011/bootstrap-teachpack",18039,369,42,15]),types.vector(["bootstrap2011/bootstrap-teachpack",18055,369,58,2]),types.vector(["bootstrap2011/bootstrap-teachpack",18036,369,39,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18036,369,39,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18037,369,40,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18040,369,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18052,369,55,1]),types.vector(["bootstrap2011/bootstrap-teachpack",18039,369,42,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18039,369,42,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18040,369,43,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":-1}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18078,370,17,7]),types.vector(["bootstrap2011/bootstrap-teachpack",18086,370,25,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18099,370,38,2]),types.vector(["bootstrap2011/bootstrap-teachpack",18077,370,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18077,370,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18078,370,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18120,371,17,9]),types.vector(["bootstrap2011/bootstrap-teachpack",18130,371,27,10]),types.vector(["bootstrap2011/bootstrap-teachpack",18119,371,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18119,371,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18120,371,17,9])},"rands":[{"$":"toplevel","depth":6,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18130,371,27,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18159,372,17,6]),types.vector(["bootstrap2011/bootstrap-teachpack",18166,372,24,9]),types.vector(["bootstrap2011/bootstrap-teachpack",18158,372,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18158,372,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18159,372,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15247,326,26,6]),types.vector(["bootstrap2011/bootstrap-teachpack",15255,326,34,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15324,328,30,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15333,328,39,7]),types.vector(["bootstrap2011/bootstrap-teachpack",15341,328,47,15]),types.vector(["bootstrap2011/bootstrap-teachpack",15323,328,29,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15323,328,29,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15324,328,30,8])},"rands":[{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15333,328,39,7])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15342,328,48,11]),types.vector(["bootstrap2011/bootstrap-teachpack",15354,328,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",15341,328,47,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15341,328,47,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15342,328,48,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15394,329,36,163]),types.vector(["bootstrap2011/bootstrap-teachpack",15412,330,37,144]),types.vector(["bootstrap2011/bootstrap-teachpack",15394,329,36,163])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15394,329,36,163])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15394,329,36,163]),types.vector(["bootstrap2011/bootstrap-teachpack",15395,329,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15594,332,36,422]),types.vector(["bootstrap2011/bootstrap-teachpack",15644,333,37,371]),types.vector(["bootstrap2011/bootstrap-teachpack",15594,332,36,422])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15594,332,36,422])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15594,332,36,422]),types.vector(["bootstrap2011/bootstrap-teachpack",15595,332,37,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16053,338,36,163]),types.vector(["bootstrap2011/bootstrap-teachpack",16071,339,37,144]),types.vector(["bootstrap2011/bootstrap-teachpack",16053,338,36,163])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16053,338,36,163])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16053,338,36,163]),types.vector(["bootstrap2011/bootstrap-teachpack",16054,338,37,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16253,341,36,485]),types.vector(["bootstrap2011/bootstrap-teachpack",16260,341,43,477]),types.vector(["bootstrap2011/bootstrap-teachpack",16253,341,36,485])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16253,341,36,485])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16253,341,36,485]),types.vector(["bootstrap2011/bootstrap-teachpack",16254,341,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16775,347,36,25]),types.vector(["bootstrap2011/bootstrap-teachpack",16783,347,44,16]),types.vector(["bootstrap2011/bootstrap-teachpack",16775,347,36,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16775,347,36,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16775,347,36,25]),types.vector(["bootstrap2011/bootstrap-teachpack",16776,347,37,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16837,348,36,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16841,348,40,12]),types.vector(["bootstrap2011/bootstrap-teachpack",16837,348,36,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16837,348,36,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16837,348,36,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16838,348,37,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16891,349,36,23]),types.vector(["bootstrap2011/bootstrap-teachpack",16898,349,43,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16891,349,36,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16891,349,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16891,349,36,23]),types.vector(["bootstrap2011/bootstrap-teachpack",16892,349,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16951,350,36,23]),types.vector(["bootstrap2011/bootstrap-teachpack",16958,350,43,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16951,350,36,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16951,350,36,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16951,350,36,23]),types.vector(["bootstrap2011/bootstrap-teachpack",16952,350,37,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17048,352,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17050,352,37,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17056,352,43,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17048,352,35,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17047,352,34,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17094,353,35,10]),types.vector(["bootstrap2011/bootstrap-teachpack",17105,353,46,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17113,353,54,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17125,353,66,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17133,353,74,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17140,353,81,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17155,354,46,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17161,354,52,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17167,354,58,12]),types.vector(["bootstrap2011/bootstrap-teachpack",17093,353,34,87])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17093,353,34,87])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17094,353,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17168,354,59,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17170,354,61,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17176,354,67,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17167,354,58,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17167,354,58,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17168,354,59,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17217,355,35,15]),types.vector(["bootstrap2011/bootstrap-teachpack",17233,355,51,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17240,355,58,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17248,355,66,8]),types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17217,355,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17216,355,34,41])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17402,358,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",17413,358,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17421,358,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17433,358,68,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17441,358,76,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17448,358,83,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17458,359,48,28]),types.vector(["bootstrap2011/bootstrap-teachpack",17487,359,77,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17493,359,83,3]),types.vector(["bootstrap2011/bootstrap-teachpack",17401,358,36,96])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17401,358,36,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17402,358,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17459,359,49,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17461,359,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17467,359,57,18]),types.vector(["bootstrap2011/bootstrap-teachpack",17458,359,48,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17458,359,48,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17459,359,49,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17467,359,57,18])}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17535,360,35,15]),types.vector(["bootstrap2011/bootstrap-teachpack",17551,360,51,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17558,360,58,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17566,360,66,8]),types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17535,360,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17534,360,34,41])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17722,363,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",17733,363,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17741,363,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17753,363,68,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17761,363,76,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17768,363,83,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17778,364,48,28]),types.vector(["bootstrap2011/bootstrap-teachpack",17807,364,77,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17813,364,83,3]),types.vector(["bootstrap2011/bootstrap-teachpack",17721,363,36,96])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17721,363,36,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17722,363,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17779,364,49,1]),types.vector(["bootstrap2011/bootstrap-teachpack",17781,364,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17787,364,57,18]),types.vector(["bootstrap2011/bootstrap-teachpack",17778,364,48,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17778,364,48,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17779,364,49,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17787,364,57,18])}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4]),types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},{"$":"toplevel","depth":4,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17854,365,34,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17860,365,40,10]),types.vector(["bootstrap2011/bootstrap-teachpack",17871,365,51,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17879,365,59,11]),types.vector(["bootstrap2011/bootstrap-teachpack",17891,365,71,7]),types.vector(["bootstrap2011/bootstrap-teachpack",17899,365,79,6]),types.vector(["bootstrap2011/bootstrap-teachpack",17906,365,86,2]),types.vector(["bootstrap2011/bootstrap-teachpack",17919,366,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17925,366,57,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17931,366,63,5]),types.vector(["bootstrap2011/bootstrap-teachpack",17859,365,39,78])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17859,365,39,78])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17860,365,40,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932]),types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932]),types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",17007,351,31,932])}]}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16959,350,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16971,350,56,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16958,350,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16958,350,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16959,350,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16899,349,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16911,349,56,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16898,349,43,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16898,349,43,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16899,349,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16842,348,41,8]),types.vector(["bootstrap2011/bootstrap-teachpack",16851,348,50,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16841,348,40,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16841,348,40,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16842,348,41,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16784,347,45,12]),types.vector(["bootstrap2011/bootstrap-teachpack",16797,347,58,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16783,347,44,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16783,347,44,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16784,347,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16261,341,44,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16263,341,46,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16325,342,46,159]),types.vector(["bootstrap2011/bootstrap-teachpack",16531,344,46,158]),types.vector(["bootstrap2011/bootstrap-teachpack",16260,341,43,477])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16260,341,43,477])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16261,341,44,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16264,341,47,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16276,341,59,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16263,341,46,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16263,341,46,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16264,341,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16326,342,47,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16330,342,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",16336,342,57,59]),types.vector(["bootstrap2011/bootstrap-teachpack",16396,342,117,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16330,342,51,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16337,342,58,6]),types.vector(["bootstrap2011/bootstrap-teachpack",16345,342,66,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16349,342,70,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16365,342,86,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16367,342,88,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16385,342,106,8]),types.vector(["bootstrap2011/bootstrap-teachpack",16348,342,69,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16348,342,69,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16349,342,70,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16368,342,89,13]),types.vector(["bootstrap2011/bootstrap-teachpack",16382,342,103,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16367,342,88,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16367,342,88,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16368,342,89,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16397,342,118,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16409,342,130,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16396,342,117,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16396,342,117,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16397,342,118,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16329,342,50,83])}]}}},"then":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16463,343,50,18])},"else":{"$":"constant","value":0}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16532,344,47,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16536,344,51,5]),types.vector(["bootstrap2011/bootstrap-teachpack",16542,344,57,58]),types.vector(["bootstrap2011/bootstrap-teachpack",16601,344,116,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16536,344,51,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",16543,344,58,6]),types.vector(["bootstrap2011/bootstrap-teachpack",16550,344,65,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16554,344,69,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16570,344,85,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16572,344,87,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16590,344,105,8]),types.vector(["bootstrap2011/bootstrap-teachpack",16553,344,68,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16553,344,68,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16554,344,69,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16573,344,88,13]),types.vector(["bootstrap2011/bootstrap-teachpack",16587,344,102,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16572,344,87,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16572,344,87,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16573,344,88,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16602,344,117,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16614,344,129,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16601,344,116,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16601,344,116,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16602,344,117,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16535,344,50,82])}]}}},"then":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16668,345,50,18])},"else":{"$":"constant","value":0}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16072,339,38,8]),types.vector(["bootstrap2011/bootstrap-teachpack",16081,339,47,17]),types.vector(["bootstrap2011/bootstrap-teachpack",16099,339,65,13]),types.vector(["bootstrap2011/bootstrap-teachpack",16161,340,47,53]),types.vector(["bootstrap2011/bootstrap-teachpack",16071,339,37,144])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16071,339,37,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16072,339,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16082,339,48,13]),types.vector(["bootstrap2011/bootstrap-teachpack",16096,339,62,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16081,339,47,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16081,339,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16082,339,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16162,340,48,16]),types.vector(["bootstrap2011/bootstrap-teachpack",16179,340,65,9]),types.vector(["bootstrap2011/bootstrap-teachpack",16189,340,75,8]),types.vector(["bootstrap2011/bootstrap-teachpack",16198,340,84,15]),types.vector(["bootstrap2011/bootstrap-teachpack",16161,340,47,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16161,340,47,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16162,340,48,16])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",16199,340,85,11]),types.vector(["bootstrap2011/bootstrap-teachpack",16211,340,97,1]),types.vector(["bootstrap2011/bootstrap-teachpack",16198,340,84,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",16198,340,84,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16199,340,85,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15645,333,38,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15654,333,47,277]),types.vector(["bootstrap2011/bootstrap-teachpack",15979,337,47,17]),types.vector(["bootstrap2011/bootstrap-teachpack",15997,337,65,17]),types.vector(["bootstrap2011/bootstrap-teachpack",15644,333,37,371])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15644,333,37,371])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15645,333,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15655,333,48,6]),types.vector(["bootstrap2011/bootstrap-teachpack",15662,333,55,196]),types.vector(["bootstrap2011/bootstrap-teachpack",15915,336,55,15]),types.vector(["bootstrap2011/bootstrap-teachpack",15654,333,47,277])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15654,333,47,277])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15655,333,48,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15663,333,56,16]),types.vector(["bootstrap2011/bootstrap-teachpack",15737,334,56,9]),types.vector(["bootstrap2011/bootstrap-teachpack",15747,334,66,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15813,335,56,44]),types.vector(["bootstrap2011/bootstrap-teachpack",15662,333,55,196])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15662,333,55,196])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15663,333,56,16])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15814,335,57,6]),types.vector(["bootstrap2011/bootstrap-teachpack",15821,335,64,17]),types.vector(["bootstrap2011/bootstrap-teachpack",15839,335,82,17]),types.vector(["bootstrap2011/bootstrap-teachpack",15813,335,56,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15813,335,56,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15814,335,57,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15822,335,65,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15836,335,79,1]),types.vector(["bootstrap2011/bootstrap-teachpack",15821,335,64,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15821,335,64,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15822,335,65,13])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15840,335,83,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15854,335,97,1]),types.vector(["bootstrap2011/bootstrap-teachpack",15839,335,82,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15839,335,82,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15840,335,83,13])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15916,336,56,11]),types.vector(["bootstrap2011/bootstrap-teachpack",15928,336,68,1]),types.vector(["bootstrap2011/bootstrap-teachpack",15915,336,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15915,336,55,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15916,336,56,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15998,337,66,6]),types.vector(["bootstrap2011/bootstrap-teachpack",16006,337,74,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"toplevel","depth":0,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",16009,337,77,4])}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15413,330,38,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15422,330,47,17]),types.vector(["bootstrap2011/bootstrap-teachpack",15440,330,65,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15502,331,47,53]),types.vector(["bootstrap2011/bootstrap-teachpack",15412,330,37,144])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15412,330,37,144])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15413,330,38,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15423,330,48,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15437,330,62,1]),types.vector(["bootstrap2011/bootstrap-teachpack",15422,330,47,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15422,330,47,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15423,330,48,13])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15503,331,48,16]),types.vector(["bootstrap2011/bootstrap-teachpack",15520,331,65,9]),types.vector(["bootstrap2011/bootstrap-teachpack",15530,331,75,8]),types.vector(["bootstrap2011/bootstrap-teachpack",15539,331,84,15]),types.vector(["bootstrap2011/bootstrap-teachpack",15502,331,47,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15502,331,47,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15503,331,48,16])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15540,331,85,11]),types.vector(["bootstrap2011/bootstrap-teachpack",15552,331,97,1]),types.vector(["bootstrap2011/bootstrap-teachpack",15539,331,84,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15539,331,84,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15540,331,85,11])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14690,320,23,6]),types.vector(["bootstrap2011/bootstrap-teachpack",14698,320,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14700,320,33,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2,3,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14704,320,37,8]),types.vector(["bootstrap2011/bootstrap-teachpack",14713,320,46,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14715,320,48,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14717,320,50,13]),types.vector(["bootstrap2011/bootstrap-teachpack",14778,321,46,439]),types.vector(["bootstrap2011/bootstrap-teachpack",14703,320,36,515])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14703,320,36,515])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14704,320,37,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14779,321,47,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140]),types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14783,321,51,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14884,322,55,3]),types.vector(["bootstrap2011/bootstrap-teachpack",14888,322,59,32]),types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14884,322,55,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14889,322,60,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14891,322,62,24]),types.vector(["bootstrap2011/bootstrap-teachpack",14916,322,87,3]),types.vector(["bootstrap2011/bootstrap-teachpack",14888,322,59,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14888,322,59,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14889,322,60,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14892,322,63,18]),types.vector(["bootstrap2011/bootstrap-teachpack",14911,322,82,3]),types.vector(["bootstrap2011/bootstrap-teachpack",14891,322,62,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14891,322,62,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}},{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14883,322,54,38])}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14783,321,51,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14787,321,55,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14789,321,57,36]),types.vector(["bootstrap2011/bootstrap-teachpack",14826,321,94,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14787,321,55,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14790,321,58,15]),types.vector(["bootstrap2011/bootstrap-teachpack",14806,321,74,18]),types.vector(["bootstrap2011/bootstrap-teachpack",14789,321,57,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14789,321,57,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14790,321,58,15])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14786,321,54,42])}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14782,321,50,140])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14974,323,51,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14985,323,62,4]),types.vector(["bootstrap2011/bootstrap-teachpack",14990,323,67,159]),types.vector(["bootstrap2011/bootstrap-teachpack",14984,323,61,166])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14984,323,61,166])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14985,323,62,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14991,323,68,10]),types.vector(["bootstrap2011/bootstrap-teachpack",15002,323,79,49]),types.vector(["bootstrap2011/bootstrap-teachpack",15126,324,73,13]),types.vector(["bootstrap2011/bootstrap-teachpack",15140,324,87,8]),types.vector(["bootstrap2011/bootstrap-teachpack",14990,323,67,159])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14990,323,67,159])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14991,323,68,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15003,323,80,9]),types.vector(["bootstrap2011/bootstrap-teachpack",15013,323,90,18]),types.vector(["bootstrap2011/bootstrap-teachpack",15032,323,109,18]),types.vector(["bootstrap2011/bootstrap-teachpack",15002,323,79,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15002,323,79,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15003,323,80,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15014,323,91,5]),types.vector(["bootstrap2011/bootstrap-teachpack",15020,323,97,10]),types.vector(["bootstrap2011/bootstrap-teachpack",15013,323,90,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15013,323,90,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15014,323,91,5])},"rands":[{"$":"toplevel","depth":7,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15020,323,97,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",15033,323,110,5]),types.vector(["bootstrap2011/bootstrap-teachpack",15039,323,116,10]),types.vector(["bootstrap2011/bootstrap-teachpack",15032,323,109,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",15032,323,109,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15033,323,110,5])},"rands":[{"$":"toplevel","depth":7,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",15039,323,116,10])}]}}}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"player"}]}}}]}}}},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",15203,325,51,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":types.EMPTY}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14459,315,19,10]),types.vector(["bootstrap2011/bootstrap-teachpack",14470,315,30,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14478,315,38,11]),types.vector(["bootstrap2011/bootstrap-teachpack",14490,315,50,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14498,315,58,6]),types.vector(["bootstrap2011/bootstrap-teachpack",14505,315,65,10]),types.vector(["bootstrap2011/bootstrap-teachpack",14546,316,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14586,317,30,5]),types.vector(["bootstrap2011/bootstrap-teachpack",14622,318,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14458,315,18,207])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14458,315,18,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14459,315,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14342,312,22,6]),types.vector(["bootstrap2011/bootstrap-teachpack",14350,312,30,2]),types.vector(["bootstrap2011/bootstrap-teachpack",14353,312,33,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14368,313,24,9]),types.vector(["bootstrap2011/bootstrap-teachpack",14378,313,34,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14391,313,47,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14411,314,34,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14424,314,47,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14367,313,23,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14367,313,23,70])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14379,313,35,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14387,313,43,2]),types.vector(["bootstrap2011/bootstrap-teachpack",14378,313,34,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14378,313,34,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14379,313,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14392,313,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14400,313,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",14391,313,47,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14391,313,47,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14392,313,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14412,314,35,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14420,314,43,2]),types.vector(["bootstrap2011/bootstrap-teachpack",14411,314,34,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14411,314,34,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14412,314,35,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14425,314,48,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14433,314,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",14424,314,47,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14424,314,47,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14425,314,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14206,309,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14210,309,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14212,309,29,28]),types.vector(["bootstrap2011/bootstrap-teachpack",14241,309,58,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14210,309,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14213,309,30,15]),types.vector(["bootstrap2011/bootstrap-teachpack",14229,309,46,10]),types.vector(["bootstrap2011/bootstrap-teachpack",14212,309,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14212,309,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14213,309,30,15])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14209,309,26,34])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",14251,310,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",14259,310,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14261,310,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[7],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14265,310,41,10]),types.vector(["bootstrap2011/bootstrap-teachpack",14276,310,52,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14264,310,40,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14264,310,40,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"else":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13781,302,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13789,302,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13791,302,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13823,303,29,10]),types.vector(["bootstrap2011/bootstrap-teachpack",13878,304,29,208]),types.vector(["bootstrap2011/bootstrap-teachpack",14116,307,29,17]),types.vector(["bootstrap2011/bootstrap-teachpack",14163,308,29,16]),types.vector(["bootstrap2011/bootstrap-teachpack",13822,303,28,358])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13822,303,28,358])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13823,303,29,10])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13879,304,30,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13883,304,34,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13885,304,36,32]),types.vector(["bootstrap2011/bootstrap-teachpack",13918,304,69,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13883,304,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13886,304,37,15]),types.vector(["bootstrap2011/bootstrap-teachpack",13902,304,53,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13885,304,36,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13885,304,36,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13886,304,37,15])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13882,304,33,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13956,305,34,9]),types.vector(["bootstrap2011/bootstrap-teachpack",13966,305,44,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13978,305,56,30]),types.vector(["bootstrap2011/bootstrap-teachpack",13955,305,33,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13955,305,33,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13956,305,34,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13967,305,45,7]),types.vector(["bootstrap2011/bootstrap-teachpack",13975,305,53,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13966,305,44,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13966,305,44,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13967,305,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13979,305,57,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13994,305,72,11]),types.vector(["bootstrap2011/bootstrap-teachpack",14006,305,84,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13978,305,56,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13978,305,56,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13995,305,73,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14003,305,81,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13994,305,72,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13994,305,72,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13995,305,73,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14044,306,34,14]),types.vector(["bootstrap2011/bootstrap-teachpack",14059,306,49,11]),types.vector(["bootstrap2011/bootstrap-teachpack",14071,306,61,11]),types.vector(["bootstrap2011/bootstrap-teachpack",14083,306,73,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14043,306,33,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14043,306,33,42])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14060,306,50,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14068,306,58,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14059,306,49,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14059,306,49,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14060,306,50,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14072,306,62,7]),types.vector(["bootstrap2011/bootstrap-teachpack",14080,306,70,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14071,306,61,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14071,306,61,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14072,306,62,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14117,307,30,13]),types.vector(["bootstrap2011/bootstrap-teachpack",14131,307,44,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14116,307,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14116,307,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14117,307,30,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",14164,308,30,12]),types.vector(["bootstrap2011/bootstrap-teachpack",14177,308,43,1]),types.vector(["bootstrap2011/bootstrap-teachpack",14163,308,29,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",14163,308,29,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",14164,308,30,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"constant","value":types.EMPTY}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13477,297,21,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13481,297,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13486,297,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13488,297,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13490,297,34,32]),types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13486,297,30,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13491,297,35,15]),types.vector(["bootstrap2011/bootstrap-teachpack",13507,297,51,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13490,297,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13490,297,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13491,297,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13485,297,29,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13481,297,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13533,298,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13540,298,37,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13544,298,41,20]),types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13533,298,30,6])},"rands":[{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13545,298,42,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13560,298,57,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13544,298,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13544,298,41,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13532,298,29,33])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13480,297,24,86])}]}}},"then":{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13669,300,25,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13673,300,29,36]),types.vector(["bootstrap2011/bootstrap-teachpack",13710,300,66,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13668,300,24,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13668,300,24,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13669,300,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13674,300,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13682,300,38,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13686,300,42,5]),types.vector(["bootstrap2011/bootstrap-teachpack",13692,300,48,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13694,300,50,13]),types.vector(["bootstrap2011/bootstrap-teachpack",13685,300,41,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13685,300,41,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13686,300,42,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86]),types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13208,293,21,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13212,293,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13217,293,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13219,293,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13221,293,34,32]),types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13217,293,30,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13222,293,35,15]),types.vector(["bootstrap2011/bootstrap-teachpack",13238,293,51,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13221,293,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13221,293,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13222,293,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13216,293,29,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13212,293,25,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13264,294,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13271,294,37,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13275,294,41,20]),types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13264,294,30,6])},"rands":[{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13276,294,42,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13291,294,57,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13275,294,41,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13275,294,41,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13263,294,29,33])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13211,293,24,86])}]}}},"then":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13400,296,25,3]),types.vector(["bootstrap2011/bootstrap-teachpack",13404,296,29,36]),types.vector(["bootstrap2011/bootstrap-teachpack",13441,296,66,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13399,296,24,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13399,296,24,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13400,296,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",13405,296,30,6]),types.vector(["bootstrap2011/bootstrap-teachpack",13413,296,38,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,17],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13417,296,42,5]),types.vector(["bootstrap2011/bootstrap-teachpack",13423,296,48,1]),types.vector(["bootstrap2011/bootstrap-teachpack",13425,296,50,13]),types.vector(["bootstrap2011/bootstrap-teachpack",13416,296,41,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13416,296,41,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13417,296,42,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13154,292,31,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13166,292,43,18]),types.vector(["bootstrap2011/bootstrap-teachpack",13153,292,30,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13153,292,30,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13154,292,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13094,291,27,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13106,291,39,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13093,291,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13093,291,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13094,291,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",13038,290,27,11]),types.vector(["bootstrap2011/bootstrap-teachpack",13050,290,39,14]),types.vector(["bootstrap2011/bootstrap-teachpack",13037,290,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",13037,290,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",13038,290,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12915,288,13,3]),types.vector(["bootstrap2011/bootstrap-teachpack",12919,288,17,61]),types.vector(["bootstrap2011/bootstrap-teachpack",12998,289,17,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12914,288,12,95])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12914,288,12,95])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12915,288,13,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12920,288,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",12928,288,26,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12932,288,30,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12943,288,41,27]),types.vector(["bootstrap2011/bootstrap-teachpack",12971,288,69,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12973,288,71,5]),types.vector(["bootstrap2011/bootstrap-teachpack",12931,288,29,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12931,288,29,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12932,288,30,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12944,288,42,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12956,288,54,13]),types.vector(["bootstrap2011/bootstrap-teachpack",12943,288,41,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12943,288,41,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12944,288,42,11])},"rands":[{"$":"constant","value":"screen-left"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":3,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12973,288,71,5])}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12781,285,13,3]),types.vector(["bootstrap2011/bootstrap-teachpack",12785,285,17,62]),types.vector(["bootstrap2011/bootstrap-teachpack",12865,286,17,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12780,285,12,96])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12780,285,12,96])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12781,285,13,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",12786,285,18,6]),types.vector(["bootstrap2011/bootstrap-teachpack",12794,285,26,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12798,285,30,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12809,285,41,28]),types.vector(["bootstrap2011/bootstrap-teachpack",12838,285,70,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12840,285,72,5]),types.vector(["bootstrap2011/bootstrap-teachpack",12797,285,29,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12797,285,29,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12798,285,30,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12810,285,42,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12822,285,54,14]),types.vector(["bootstrap2011/bootstrap-teachpack",12809,285,41,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12809,285,41,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12810,285,42,11])},"rands":[{"$":"constant","value":"screen-right"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":3,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12840,285,72,5])}]}}}},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12698,283,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12702,283,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",12708,283,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12702,283,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12701,283,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12732,283,58,4]),types.vector(["bootstrap2011/bootstrap-teachpack",12737,283,63,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12731,283,57,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12731,283,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12732,283,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12621,282,24,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12625,282,28,5]),types.vector(["bootstrap2011/bootstrap-teachpack",12631,282,34,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12625,282,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12624,282,27,18])}]}}},"then":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12655,282,58,4]),types.vector(["bootstrap2011/bootstrap-teachpack",12660,282,63,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12654,282,57,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12654,282,57,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12655,282,58,4])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12517,280,20,10]),types.vector(["bootstrap2011/bootstrap-teachpack",12528,280,31,36]),types.vector(["bootstrap2011/bootstrap-teachpack",12576,281,31,9]),types.vector(["bootstrap2011/bootstrap-teachpack",12586,281,41,8]),types.vector(["bootstrap2011/bootstrap-teachpack",12516,280,19,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12516,280,19,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12517,280,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12529,280,32,9]),types.vector(["bootstrap2011/bootstrap-teachpack",12539,280,42,11]),types.vector(["bootstrap2011/bootstrap-teachpack",12551,280,54,12]),types.vector(["bootstrap2011/bootstrap-teachpack",12528,280,31,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12528,280,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12529,280,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12540,280,43,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12542,280,45,5]),types.vector(["bootstrap2011/bootstrap-teachpack",12548,280,51,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12539,280,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12539,280,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12540,280,43,1])},"rands":[{"$":"toplevel","depth":8,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12542,280,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",12552,280,55,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12554,280,57,6]),types.vector(["bootstrap2011/bootstrap-teachpack",12561,280,64,1]),types.vector(["bootstrap2011/bootstrap-teachpack",12551,280,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",12551,280,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12552,280,55,1])},"rands":[{"$":"toplevel","depth":8,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",12554,280,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"center"}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18570,403,11,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",18570,403,11,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18575,403,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18598,405,8,10]),types.vector(["bootstrap2011/bootstrap-teachpack",18609,405,19,3]),types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18598,405,8,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18597,405,7,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18634,406,8,7]),types.vector(["bootstrap2011/bootstrap-teachpack",18642,406,16,3]),types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18634,406,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18633,406,7,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18665,407,8,7]),types.vector(["bootstrap2011/bootstrap-teachpack",18673,407,16,3]),types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18665,407,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18664,407,7,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18696,408,8,6]),types.vector(["bootstrap2011/bootstrap-teachpack",18703,408,15,3]),types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18696,408,8,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18695,408,7,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18725,409,8,8]),types.vector(["bootstrap2011/bootstrap-teachpack",18734,409,17,3]),types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":176,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18725,409,8,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18724,409,7,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18758,410,8,5]),types.vector(["bootstrap2011/bootstrap-teachpack",18764,410,14,3]),types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18758,410,8,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18757,410,7,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18789,411,8,7]),types.vector(["bootstrap2011/bootstrap-teachpack",18797,411,16,3]),types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18789,411,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18788,411,7,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},{"$":"toplevel","depth":4,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18819,412,7,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257]),types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257]),types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18584,404,4,257])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18937,416,11,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",18937,416,11,13]),types.vector(["bootstrap2011/bootstrap-teachpack",18951,416,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",18959,417,5,4]),types.vector(["bootstrap2011/bootstrap-teachpack",18964,417,10,1]),types.vector(["bootstrap2011/bootstrap-teachpack",18966,417,12,2]),types.vector(["bootstrap2011/bootstrap-teachpack",18969,417,15,6]),types.vector(["bootstrap2011/bootstrap-teachpack",18958,417,4,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",18958,417,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",18959,417,5,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19072,421,11,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19072,421,11,13]),types.vector(["bootstrap2011/bootstrap-teachpack",19086,421,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19094,422,5,13]),types.vector(["bootstrap2011/bootstrap-teachpack",19108,422,19,18]),types.vector(["bootstrap2011/bootstrap-teachpack",19093,422,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19093,422,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19094,422,5,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19109,422,20,14]),types.vector(["bootstrap2011/bootstrap-teachpack",19124,422,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19108,422,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19108,422,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19109,422,20,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19302,427,11,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19302,427,11,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19313,427,22,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19324,427,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19326,427,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19328,427,37,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19345,428,5,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19356,428,16,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19367,428,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19369,428,29,7]),types.vector(["bootstrap2011/bootstrap-teachpack",19377,428,37,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19344,428,4,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19344,428,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19345,428,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19370,428,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19372,428,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19374,428,34,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19369,428,29,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19369,428,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19370,428,30,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19565,433,11,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19565,433,11,9]),types.vector(["bootstrap2011/bootstrap-teachpack",19575,433,21,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19586,433,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19588,433,34,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19590,433,36,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19607,434,5,11]),types.vector(["bootstrap2011/bootstrap-teachpack",19619,434,17,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19630,434,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19632,434,30,31]),types.vector(["bootstrap2011/bootstrap-teachpack",19664,434,62,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19606,434,4,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19606,434,4,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19607,434,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19633,434,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19635,434,33,25]),types.vector(["bootstrap2011/bootstrap-teachpack",19661,434,59,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19632,434,30,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19632,434,30,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19633,434,31,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19636,434,34,12]),types.vector(["bootstrap2011/bootstrap-teachpack",19649,434,47,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19635,434,33,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19635,434,33,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":165,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19636,434,34,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19715,437,11,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19715,437,11,2]),types.vector(["bootstrap2011/bootstrap-teachpack",19718,437,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19722,437,18,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19724,437,20,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19726,437,22,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19721,437,17,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19721,437,17,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19722,437,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19958,442,11,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",19958,442,11,4]),types.vector(["bootstrap2011/bootstrap-teachpack",19963,442,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19967,442,20,3]),types.vector(["bootstrap2011/bootstrap-teachpack",19971,442,24,16]),types.vector(["bootstrap2011/bootstrap-teachpack",19966,442,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19966,442,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19967,442,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19972,442,25,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19974,442,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19976,442,29,10]),types.vector(["bootstrap2011/bootstrap-teachpack",19971,442,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19971,442,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19972,442,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",19977,442,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",19979,442,32,2]),types.vector(["bootstrap2011/bootstrap-teachpack",19982,442,35,3]),types.vector(["bootstrap2011/bootstrap-teachpack",19976,442,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",19976,442,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19977,442,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",19979,442,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20220,447,11,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20220,447,11,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20227,447,18,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20231,447,22,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20235,447,26,16]),types.vector(["bootstrap2011/bootstrap-teachpack",20230,447,21,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20230,447,21,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20231,447,22,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20236,447,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20238,447,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20240,447,31,10]),types.vector(["bootstrap2011/bootstrap-teachpack",20235,447,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20235,447,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20236,447,27,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20241,447,32,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20243,447,34,2]),types.vector(["bootstrap2011/bootstrap-teachpack",20246,447,37,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20240,447,31,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20240,447,31,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20241,447,32,1])},"rands":[{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20243,447,34,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20482,452,11,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20482,452,11,7]),types.vector(["bootstrap2011/bootstrap-teachpack",20490,452,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20494,452,23,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20498,452,27,16]),types.vector(["bootstrap2011/bootstrap-teachpack",20493,452,22,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20493,452,22,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20494,452,23,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20499,452,28,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20501,452,30,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20503,452,32,10]),types.vector(["bootstrap2011/bootstrap-teachpack",20498,452,27,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20498,452,27,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20499,452,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20504,452,33,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20506,452,35,2]),types.vector(["bootstrap2011/bootstrap-teachpack",20509,452,38,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20503,452,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20503,452,32,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20504,452,33,1])},"rands":[{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20506,452,35,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20598,456,11,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20598,456,11,4]),types.vector(["bootstrap2011/bootstrap-teachpack",20603,456,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20613,457,5,8]),types.vector(["bootstrap2011/bootstrap-teachpack",20622,457,14,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20626,457,18,21]),types.vector(["bootstrap2011/bootstrap-teachpack",20612,457,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20612,457,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20613,457,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20627,457,19,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20634,457,26,12]),types.vector(["bootstrap2011/bootstrap-teachpack",20626,457,18,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20626,457,18,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20627,457,19,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20635,457,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20642,457,34,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20634,457,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20634,457,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20635,457,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20765,461,11,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20765,461,11,7]),types.vector(["bootstrap2011/bootstrap-teachpack",20773,461,19,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20775,461,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20784,462,5,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20796,463,5,29]),types.vector(["bootstrap2011/bootstrap-teachpack",20831,464,5,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20783,462,4,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20783,462,4,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20784,462,5,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20797,463,6,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20805,463,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20811,463,20,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20818,463,27,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20822,463,31,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20810,463,19,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20810,463,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20811,463,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20849,466,11,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",20849,466,11,3]),types.vector(["bootstrap2011/bootstrap-teachpack",20853,466,15,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20855,466,17,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20863,467,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20867,467,9,5]),types.vector(["bootstrap2011/bootstrap-teachpack",20873,467,15,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20867,467,9,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20866,467,8,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20877,467,19,7]),types.vector(["bootstrap2011/bootstrap-teachpack",20885,467,27,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20887,467,29,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20876,467,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20876,467,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20877,467,19,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",20891,467,33,6]),types.vector(["bootstrap2011/bootstrap-teachpack",20898,467,40,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20900,467,42,1]),types.vector(["bootstrap2011/bootstrap-teachpack",20890,467,32,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",20890,467,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",20891,467,33,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217]),types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217]),types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6105,136,1,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6113,136,9,193]),types.vector(["bootstrap2011/bootstrap-teachpack",6316,139,9,4]),types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6104,136,0,217])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6105,136,1,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6114,136,10,15]),types.vector(["bootstrap2011/bootstrap-teachpack",6130,136,26,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6193,137,26,43]),types.vector(["bootstrap2011/bootstrap-teachpack",6263,138,26,42]),types.vector(["bootstrap2011/bootstrap-teachpack",6113,136,9,193])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6113,136,9,193])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6114,136,10,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6131,136,27,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6142,136,38,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6160,136,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6163,136,59,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6130,136,26,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6130,136,26,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6131,136,27,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6143,136,39,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6153,136,49,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6156,136,52,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6142,136,38,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6142,136,38,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6143,136,39,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6194,137,27,4]),types.vector(["bootstrap2011/bootstrap-teachpack",6199,137,32,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6193,137,26,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6193,137,26,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6194,137,27,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6200,137,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6211,137,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6229,137,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6232,137,65,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6199,137,32,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6199,137,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6200,137,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6212,137,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6222,137,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6225,137,58,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6211,137,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6211,137,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6212,137,45,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",6264,138,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6272,138,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6274,138,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6278,138,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6280,138,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6292,138,55,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6277,138,40,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6277,138,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6278,138,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6281,138,44,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6289,138,52,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6280,138,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6280,138,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6281,138,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6293,138,56,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6301,138,64,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6292,138,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6292,138,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6293,138,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}},{"$":"toplevel","depth":3,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6316,139,9,4])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218]),types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218]),types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6323,140,1,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6331,140,9,193]),types.vector(["bootstrap2011/bootstrap-teachpack",6534,143,9,5]),types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6322,140,0,218])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6323,140,1,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6332,140,10,15]),types.vector(["bootstrap2011/bootstrap-teachpack",6348,140,26,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6411,141,26,43]),types.vector(["bootstrap2011/bootstrap-teachpack",6481,142,26,42]),types.vector(["bootstrap2011/bootstrap-teachpack",6331,140,9,193])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6331,140,9,193])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6332,140,10,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6349,140,27,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6360,140,38,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6378,140,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6381,140,59,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6348,140,26,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6348,140,26,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6349,140,27,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6361,140,39,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6371,140,49,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6374,140,52,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6360,140,38,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6360,140,38,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6361,140,39,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6412,141,27,4]),types.vector(["bootstrap2011/bootstrap-teachpack",6417,141,32,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6411,141,26,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6411,141,26,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6412,141,27,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6418,141,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6429,141,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6447,141,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6450,141,65,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6417,141,32,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6417,141,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6418,141,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6430,141,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6440,141,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6443,141,58,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6429,141,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6429,141,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6430,141,45,9])},"rands":[{"$":"constant","value":51},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",6482,142,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6490,142,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6492,142,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6496,142,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6498,142,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6510,142,55,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6495,142,40,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6495,142,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6496,142,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6499,142,44,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6507,142,52,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6498,142,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6498,142,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6499,142,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6511,142,56,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6519,142,64,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6510,142,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6510,142,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6511,142,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}},{"$":"toplevel","depth":3,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6534,143,9,5])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355]),types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355]),types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6542,144,1,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6550,144,9,331]),types.vector(["bootstrap2011/bootstrap-teachpack",6891,149,9,4]),types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6541,144,0,355])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6542,144,1,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6551,144,10,15]),types.vector(["bootstrap2011/bootstrap-teachpack",6567,144,26,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6630,145,26,181]),types.vector(["bootstrap2011/bootstrap-teachpack",6838,148,26,42]),types.vector(["bootstrap2011/bootstrap-teachpack",6550,144,9,331])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6550,144,9,331])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6551,144,10,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6568,144,27,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6579,144,38,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6597,144,56,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6600,144,59,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6567,144,26,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6567,144,26,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6568,144,27,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6580,144,39,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6590,144,49,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6593,144,52,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6579,144,38,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6579,144,38,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6580,144,39,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6631,145,27,4]),types.vector(["bootstrap2011/bootstrap-teachpack",6636,145,32,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6705,146,32,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6774,147,32,36]),types.vector(["bootstrap2011/bootstrap-teachpack",6630,145,26,181])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6630,145,26,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6631,145,27,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6637,145,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6648,145,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6666,145,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6669,145,65,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6636,145,32,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6636,145,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6637,145,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6649,145,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6659,145,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6662,145,58,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6648,145,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6648,145,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6649,145,45,9])},"rands":[{"$":"constant","value":51},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6706,146,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6717,146,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6735,146,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6738,146,65,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6705,146,32,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6705,146,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6706,146,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6718,146,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6728,146,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6731,146,58,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6717,146,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6717,146,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6718,146,45,9])},"rands":[{"$":"constant","value":50},{"$":"constant","value":50}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6775,147,33,10]),types.vector(["bootstrap2011/bootstrap-teachpack",6786,147,44,17]),types.vector(["bootstrap2011/bootstrap-teachpack",6804,147,62,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6807,147,65,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6774,147,32,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6774,147,32,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6775,147,33,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6787,147,45,9]),types.vector(["bootstrap2011/bootstrap-teachpack",6797,147,55,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6800,147,58,2]),types.vector(["bootstrap2011/bootstrap-teachpack",6786,147,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6786,147,44,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6787,147,45,9])},"rands":[{"$":"constant","value":52},{"$":"constant","value":51}]}}},{"$":"constant","value":false},{"$":"constant","value":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/bootstrap-teachpack",6839,148,27,6]),types.vector(["bootstrap2011/bootstrap-teachpack",6847,148,35,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6849,148,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6853,148,41,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6855,148,43,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6867,148,55,11]),types.vector(["bootstrap2011/bootstrap-teachpack",6852,148,40,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6852,148,40,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6853,148,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6856,148,44,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6864,148,52,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6855,148,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6855,148,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6856,148,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/bootstrap-teachpack",6868,148,56,7]),types.vector(["bootstrap2011/bootstrap-teachpack",6876,148,64,1]),types.vector(["bootstrap2011/bootstrap-teachpack",6867,148,55,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/bootstrap-teachpack",6867,148,55,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6868,148,56,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}},{"$":"toplevel","depth":3,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/bootstrap-teachpack",6891,149,9,4])}]}}}]}}}]}}, 'provides': ["sine","subset?","tangent","type","sq","string->image","cosine","make-game","pick","play","put-image","number->image","overlay-at","in?","*player-y*","*score*","*player-x*"]}; diff --git a/servlet-htdocs/collects/bootstrap2011/cage-teachpack.js b/servlet-htdocs/collects/bootstrap2011/cage-teachpack.js index 25cca0e..893b8f5 100644 --- a/servlet-htdocs/collects/bootstrap2011/cage-teachpack.js +++ b/servlet-htdocs/collects/bootstrap2011/cage-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2011/cage-teachpack"] = { 'name': "bootstrap2011/cage-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"onscreen?*"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"draw-butterfly"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-x"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"world-y"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"butterfly"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",307,14,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",327,15,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",348,17,8,9])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",359,17,19,10]),types.vector(["bootstrap2011/cage-teachpack",370,17,30,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",358,17,18,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",359,17,19,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2011/butterfly.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",525,21,15,5])},{"$":"toplevel","depth":0,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("x")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("y")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",606,25,9,4])}],"body":{"$":"lam","name":types.symbol("move"),"locs":[types.vector(["bootstrap2011/cage-teachpack",606,25,9,4]),types.vector(["bootstrap2011/cage-teachpack",611,25,14,1]),types.vector(["bootstrap2011/cage-teachpack",613,25,16,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",632,27,6,3]),types.vector(["bootstrap2011/cage-teachpack",636,27,10,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",632,27,6,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",637,27,11,7]),types.vector(["bootstrap2011/cage-teachpack",645,27,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",636,27,10,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",637,27,11,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",660,28,6,8]),types.vector(["bootstrap2011/cage-teachpack",669,28,15,3]),types.vector(["bootstrap2011/cage-teachpack",673,28,19,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",660,28,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",688,29,6,10]),types.vector(["bootstrap2011/cage-teachpack",699,29,17,18]),types.vector(["bootstrap2011/cage-teachpack",718,29,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",687,29,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",688,29,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",700,29,18,1]),types.vector(["bootstrap2011/cage-teachpack",702,29,20,11]),types.vector(["bootstrap2011/cage-teachpack",714,29,32,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",699,29,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",700,29,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",703,29,21,7]),types.vector(["bootstrap2011/cage-teachpack",711,29,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",702,29,20,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",703,29,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",719,29,37,7]),types.vector(["bootstrap2011/cage-teachpack",727,29,45,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",718,29,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",719,29,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",738,30,6,8]),types.vector(["bootstrap2011/cage-teachpack",747,30,15,3]),types.vector(["bootstrap2011/cage-teachpack",751,30,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",738,30,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",767,31,6,10]),types.vector(["bootstrap2011/cage-teachpack",778,31,17,18]),types.vector(["bootstrap2011/cage-teachpack",797,31,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",766,31,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",767,31,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",779,31,18,1]),types.vector(["bootstrap2011/cage-teachpack",781,31,20,11]),types.vector(["bootstrap2011/cage-teachpack",793,31,32,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",778,31,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",779,31,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",782,31,21,7]),types.vector(["bootstrap2011/cage-teachpack",790,31,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",781,31,20,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",782,31,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",798,31,37,7]),types.vector(["bootstrap2011/cage-teachpack",806,31,45,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",797,31,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",798,31,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",817,32,6,8]),types.vector(["bootstrap2011/cage-teachpack",826,32,15,3]),types.vector(["bootstrap2011/cage-teachpack",830,32,19,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",817,32,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",845,33,6,10]),types.vector(["bootstrap2011/cage-teachpack",856,33,17,11]),types.vector(["bootstrap2011/cage-teachpack",868,33,29,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",844,33,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",845,33,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",857,33,18,7]),types.vector(["bootstrap2011/cage-teachpack",865,33,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",856,33,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",857,33,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",869,33,30,1]),types.vector(["bootstrap2011/cage-teachpack",871,33,32,11]),types.vector(["bootstrap2011/cage-teachpack",883,33,44,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",868,33,29,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",869,33,30,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",872,33,33,7]),types.vector(["bootstrap2011/cage-teachpack",880,33,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",871,33,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",872,33,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",895,34,6,8]),types.vector(["bootstrap2011/cage-teachpack",904,34,15,3]),types.vector(["bootstrap2011/cage-teachpack",908,34,19,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",895,34,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",921,35,6,10]),types.vector(["bootstrap2011/cage-teachpack",932,35,17,11]),types.vector(["bootstrap2011/cage-teachpack",944,35,29,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",920,35,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",921,35,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",933,35,18,7]),types.vector(["bootstrap2011/cage-teachpack",941,35,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",932,35,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",933,35,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",945,35,30,1]),types.vector(["bootstrap2011/cage-teachpack",947,35,32,11]),types.vector(["bootstrap2011/cage-teachpack",959,35,44,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",944,35,29,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",945,35,30,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",948,35,33,7]),types.vector(["bootstrap2011/cage-teachpack",956,35,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",947,35,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",948,35,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"toplevel","depth":4,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",620,26,2,358]),types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])}]}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1148,42,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2011/cage-teachpack",1148,42,9,10]),types.vector(["bootstrap2011/cage-teachpack",1159,42,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1171,43,9,200]),types.vector(["bootstrap2011/cage-teachpack",1198,44,10,172])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1171,43,9,200])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1171,43,9,200]),types.vector(["bootstrap2011/cage-teachpack",1172,43,10,14])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1381,49,9,391]),types.vector(["bootstrap2011/cage-teachpack",1403,50,10,368])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1381,49,9,391])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1381,49,9,391]),types.vector(["bootstrap2011/cage-teachpack",1382,49,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1779,61,5,14]),types.vector(["bootstrap2011/cage-teachpack",1794,61,20,1]),types.vector(["bootstrap2011/cage-teachpack",1817,62,20,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1778,61,4,80])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1818,62,21,9]),types.vector(["bootstrap2011/cage-teachpack",1828,62,31,1]),types.vector(["bootstrap2011/cage-teachpack",1830,62,33,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1817,62,20,40])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1831,62,34,11]),types.vector(["bootstrap2011/cage-teachpack",1843,62,46,5]),types.vector(["bootstrap2011/cage-teachpack",1849,62,52,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1830,62,33,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1831,62,34,11])},"rands":[{"$":"toplevel","depth":6,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1843,62,46,5])},{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1849,62,52,6])}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1404,50,11,6]),types.vector(["bootstrap2011/cage-teachpack",1412,50,19,1]),types.vector(["bootstrap2011/cage-teachpack",1414,50,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1434,51,13,11]),types.vector(["bootstrap2011/cage-teachpack",1459,52,13,244]),types.vector(["bootstrap2011/cage-teachpack",1710,58,13,32]),types.vector(["bootstrap2011/cage-teachpack",1749,59,13,1]),types.vector(["bootstrap2011/cage-teachpack",1764,60,13,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1433,51,12,337])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1434,51,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1460,52,14,4]),types.vector(["bootstrap2011/cage-teachpack",1480,53,14,198]),types.vector(["bootstrap2011/cage-teachpack",1693,57,14,2]),types.vector(["bootstrap2011/cage-teachpack",1696,57,17,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1459,52,13,244])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1460,52,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1481,53,15,13]),types.vector(["bootstrap2011/cage-teachpack",1495,53,29,16]),types.vector(["bootstrap2011/cage-teachpack",1542,54,29,28]),types.vector(["bootstrap2011/cage-teachpack",1600,55,29,19]),types.vector(["bootstrap2011/cage-teachpack",1649,56,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1480,53,14,198])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1481,53,15,13])},"rands":[{"$":"constant","value":"x-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1543,54,30,14]),types.vector(["bootstrap2011/cage-teachpack",1558,54,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1542,54,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1543,54,30,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1559,54,46,7]),types.vector(["bootstrap2011/cage-teachpack",1567,54,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1558,54,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1559,54,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":" y-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1650,56,30,14]),types.vector(["bootstrap2011/cage-teachpack",1665,56,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1649,56,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1650,56,30,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1666,56,46,7]),types.vector(["bootstrap2011/cage-teachpack",1674,56,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1665,56,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1666,56,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1711,58,14,8]),types.vector(["bootstrap2011/cage-teachpack",1720,58,23,19]),types.vector(["bootstrap2011/cage-teachpack",1740,58,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1710,58,13,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1711,58,14,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1721,58,24,11]),types.vector(["bootstrap2011/cage-teachpack",1733,58,36,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1720,58,23,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1721,58,24,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1199,44,11,6]),types.vector(["bootstrap2011/cage-teachpack",1207,44,19,1]),types.vector(["bootstrap2011/cage-teachpack",1209,44,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1229,45,13,11]),types.vector(["bootstrap2011/cage-teachpack",1241,45,25,9]),types.vector(["bootstrap2011/cage-teachpack",1277,46,25,11]),types.vector(["bootstrap2011/cage-teachpack",1315,47,25,22]),types.vector(["bootstrap2011/cage-teachpack",1363,48,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1228,45,12,141])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1229,45,13,11])},"rands":[{"$":"toplevel","depth":4,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1241,45,25,9])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1278,46,26,7]),types.vector(["bootstrap2011/cage-teachpack",1286,46,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1277,46,25,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1278,46,26,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1316,47,26,1]),types.vector(["bootstrap2011/cage-teachpack",1318,47,28,6]),types.vector(["bootstrap2011/cage-teachpack",1325,47,35,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1315,47,25,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1316,47,26,1])},"rands":[{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1318,47,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1326,47,36,7]),types.vector(["bootstrap2011/cage-teachpack",1334,47,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1325,47,35,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1326,47,36,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1872,65,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap2011/cage-teachpack",1872,65,9,5]),types.vector(["bootstrap2011/cage-teachpack",1878,65,15,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1898,66,9,139]),types.vector(["bootstrap2011/cage-teachpack",1910,66,21,126])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1898,66,9,139])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1898,66,9,139]),types.vector(["bootstrap2011/cage-teachpack",1899,66,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2047,69,9,199]),types.vector(["bootstrap2011/cage-teachpack",2055,69,17,190])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2047,69,9,199])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",2047,69,9,199]),types.vector(["bootstrap2011/cage-teachpack",2048,69,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2253,74,5,8]),types.vector(["bootstrap2011/cage-teachpack",2262,74,14,37]),types.vector(["bootstrap2011/cage-teachpack",2314,75,14,22]),types.vector(["bootstrap2011/cage-teachpack",2351,76,14,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2252,74,4,115])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2253,74,5,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2263,74,15,10]),types.vector(["bootstrap2011/cage-teachpack",2274,74,26,11]),types.vector(["bootstrap2011/cage-teachpack",2286,74,38,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2262,74,14,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2263,74,15,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2275,74,27,1]),types.vector(["bootstrap2011/cage-teachpack",2277,74,29,5]),types.vector(["bootstrap2011/cage-teachpack",2283,74,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2274,74,26,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2275,74,27,1])},"rands":[{"$":"toplevel","depth":7,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2277,74,29,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2287,74,39,1]),types.vector(["bootstrap2011/cage-teachpack",2289,74,41,6]),types.vector(["bootstrap2011/cage-teachpack",2296,74,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2286,74,38,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2287,74,39,1])},"rands":[{"$":"toplevel","depth":7,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2289,74,41,6])},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2315,75,15,9]),types.vector(["bootstrap2011/cage-teachpack",2325,75,25,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2314,75,14,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2315,75,15,9])},"rands":[{"$":"toplevel","depth":4,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2325,75,25,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2352,76,15,6]),types.vector(["bootstrap2011/cage-teachpack",2359,76,22,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2351,76,14,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2352,76,15,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",2056,69,18,6]),types.vector(["bootstrap2011/cage-teachpack",2064,69,26,1]),types.vector(["bootstrap2011/cage-teachpack",2066,69,28,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2090,70,20,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2094,70,24,10]),types.vector(["bootstrap2011/cage-teachpack",2105,70,35,20]),types.vector(["bootstrap2011/cage-teachpack",2162,71,35,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2106,70,36,7]),types.vector(["bootstrap2011/cage-teachpack",2114,70,44,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2105,70,35,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2106,70,36,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2115,70,45,4]),types.vector(["bootstrap2011/cage-teachpack",2120,70,50,1]),types.vector(["bootstrap2011/cage-teachpack",2122,70,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2114,70,44,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2115,70,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2163,71,36,7]),types.vector(["bootstrap2011/cage-teachpack",2171,71,44,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2162,71,35,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2163,71,36,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2172,71,45,4]),types.vector(["bootstrap2011/cage-teachpack",2177,71,50,1]),types.vector(["bootstrap2011/cage-teachpack",2179,71,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2171,71,44,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2172,71,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2209,72,24,4]),types.vector(["bootstrap2011/cage-teachpack",2214,72,29,1]),types.vector(["bootstrap2011/cage-teachpack",2216,72,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2208,72,23,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2209,72,24,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1911,66,22,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1915,66,26,1]),types.vector(["bootstrap2011/cage-teachpack",1917,66,28,27]),types.vector(["bootstrap2011/cage-teachpack",1945,66,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1915,66,26,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1918,66,29,15]),types.vector(["bootstrap2011/cage-teachpack",1934,66,45,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1917,66,28,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1918,66,29,15])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",2008,68,25,6]),types.vector(["bootstrap2011/cage-teachpack",2016,68,33,1]),types.vector(["bootstrap2011/cage-teachpack",2018,68,35,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2022,68,39,9]),types.vector(["bootstrap2011/cage-teachpack",2032,68,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2021,68,38,13])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2759,107,11,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2011/cage-teachpack",2759,107,11,4]),types.vector(["bootstrap2011/cage-teachpack",2764,107,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2787,109,8,10]),types.vector(["bootstrap2011/cage-teachpack",2798,109,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2787,109,8,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2823,110,8,7]),types.vector(["bootstrap2011/cage-teachpack",2831,110,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2823,110,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2854,111,8,7]),types.vector(["bootstrap2011/cage-teachpack",2862,111,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2854,111,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2885,112,8,6]),types.vector(["bootstrap2011/cage-teachpack",2892,112,15,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2885,112,8,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2914,113,8,8]),types.vector(["bootstrap2011/cage-teachpack",2923,113,17,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2914,113,8,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2947,114,8,5]),types.vector(["bootstrap2011/cage-teachpack",2953,114,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2947,114,8,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2978,115,8,7]),types.vector(["bootstrap2011/cage-teachpack",2986,115,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2978,115,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"toplevel","depth":4,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257]),types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3126,120,11,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3126,120,11,13]),types.vector(["bootstrap2011/cage-teachpack",3140,120,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3148,121,5,4]),types.vector(["bootstrap2011/cage-teachpack",3153,121,10,1]),types.vector(["bootstrap2011/cage-teachpack",3155,121,12,2]),types.vector(["bootstrap2011/cage-teachpack",3158,121,15,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3147,121,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3148,121,5,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3261,125,11,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3261,125,11,13]),types.vector(["bootstrap2011/cage-teachpack",3275,125,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3283,126,5,13]),types.vector(["bootstrap2011/cage-teachpack",3297,126,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3282,126,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3283,126,5,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3298,126,20,14]),types.vector(["bootstrap2011/cage-teachpack",3313,126,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3297,126,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3298,126,20,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3491,131,11,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3491,131,11,10]),types.vector(["bootstrap2011/cage-teachpack",3502,131,22,10]),types.vector(["bootstrap2011/cage-teachpack",3513,131,33,1]),types.vector(["bootstrap2011/cage-teachpack",3515,131,35,1]),types.vector(["bootstrap2011/cage-teachpack",3517,131,37,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3534,132,5,10]),types.vector(["bootstrap2011/cage-teachpack",3545,132,16,10]),types.vector(["bootstrap2011/cage-teachpack",3556,132,27,1]),types.vector(["bootstrap2011/cage-teachpack",3558,132,29,7]),types.vector(["bootstrap2011/cage-teachpack",3566,132,37,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3533,132,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3534,132,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3559,132,30,1]),types.vector(["bootstrap2011/cage-teachpack",3561,132,32,1]),types.vector(["bootstrap2011/cage-teachpack",3563,132,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3558,132,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3559,132,30,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3754,137,11,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3754,137,11,9]),types.vector(["bootstrap2011/cage-teachpack",3764,137,21,10]),types.vector(["bootstrap2011/cage-teachpack",3775,137,32,1]),types.vector(["bootstrap2011/cage-teachpack",3777,137,34,1]),types.vector(["bootstrap2011/cage-teachpack",3779,137,36,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3796,138,5,11]),types.vector(["bootstrap2011/cage-teachpack",3808,138,17,10]),types.vector(["bootstrap2011/cage-teachpack",3819,138,28,1]),types.vector(["bootstrap2011/cage-teachpack",3821,138,30,31]),types.vector(["bootstrap2011/cage-teachpack",3853,138,62,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3795,138,4,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3796,138,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3822,138,31,1]),types.vector(["bootstrap2011/cage-teachpack",3824,138,33,25]),types.vector(["bootstrap2011/cage-teachpack",3850,138,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3821,138,30,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3822,138,31,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3825,138,34,12]),types.vector(["bootstrap2011/cage-teachpack",3838,138,47,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3824,138,33,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3825,138,34,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3904,141,11,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3904,141,11,2]),types.vector(["bootstrap2011/cage-teachpack",3907,141,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3911,141,18,1]),types.vector(["bootstrap2011/cage-teachpack",3913,141,20,1]),types.vector(["bootstrap2011/cage-teachpack",3915,141,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3910,141,17,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3911,141,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4147,146,11,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4147,146,11,4]),types.vector(["bootstrap2011/cage-teachpack",4152,146,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4156,146,20,3]),types.vector(["bootstrap2011/cage-teachpack",4160,146,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4155,146,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4156,146,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4161,146,25,1]),types.vector(["bootstrap2011/cage-teachpack",4163,146,27,1]),types.vector(["bootstrap2011/cage-teachpack",4165,146,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4160,146,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4161,146,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4166,146,30,1]),types.vector(["bootstrap2011/cage-teachpack",4168,146,32,2]),types.vector(["bootstrap2011/cage-teachpack",4171,146,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4165,146,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4166,146,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4168,146,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4409,151,11,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4409,151,11,6]),types.vector(["bootstrap2011/cage-teachpack",4416,151,18,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4420,151,22,3]),types.vector(["bootstrap2011/cage-teachpack",4424,151,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4419,151,21,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4420,151,22,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4425,151,27,1]),types.vector(["bootstrap2011/cage-teachpack",4427,151,29,1]),types.vector(["bootstrap2011/cage-teachpack",4429,151,31,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4424,151,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4425,151,27,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4430,151,32,1]),types.vector(["bootstrap2011/cage-teachpack",4432,151,34,2]),types.vector(["bootstrap2011/cage-teachpack",4435,151,37,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4429,151,31,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4430,151,32,1])},"rands":[{"$":"toplevel","depth":5,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4432,151,34,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4671,156,11,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4671,156,11,7]),types.vector(["bootstrap2011/cage-teachpack",4679,156,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4683,156,23,3]),types.vector(["bootstrap2011/cage-teachpack",4687,156,27,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4682,156,22,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4683,156,23,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4688,156,28,1]),types.vector(["bootstrap2011/cage-teachpack",4690,156,30,1]),types.vector(["bootstrap2011/cage-teachpack",4692,156,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4687,156,27,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4688,156,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4693,156,33,1]),types.vector(["bootstrap2011/cage-teachpack",4695,156,35,2]),types.vector(["bootstrap2011/cage-teachpack",4698,156,38,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4692,156,32,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4693,156,33,1])},"rands":[{"$":"toplevel","depth":5,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4695,156,35,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4787,160,11,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4787,160,11,4]),types.vector(["bootstrap2011/cage-teachpack",4792,160,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4802,161,5,8]),types.vector(["bootstrap2011/cage-teachpack",4811,161,14,3]),types.vector(["bootstrap2011/cage-teachpack",4815,161,18,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4801,161,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4802,161,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4816,161,19,6]),types.vector(["bootstrap2011/cage-teachpack",4823,161,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4815,161,18,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4816,161,19,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4824,161,27,6]),types.vector(["bootstrap2011/cage-teachpack",4831,161,34,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4823,161,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4824,161,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4954,165,11,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4954,165,11,7]),types.vector(["bootstrap2011/cage-teachpack",4962,165,19,1]),types.vector(["bootstrap2011/cage-teachpack",4964,165,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4973,166,5,6]),types.vector(["bootstrap2011/cage-teachpack",4985,167,5,29]),types.vector(["bootstrap2011/cage-teachpack",5020,168,5,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4972,166,4,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4973,166,5,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",4986,167,6,6]),types.vector(["bootstrap2011/cage-teachpack",4994,167,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5000,167,20,6]),types.vector(["bootstrap2011/cage-teachpack",5007,167,27,3]),types.vector(["bootstrap2011/cage-teachpack",5011,167,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4999,167,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5000,167,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5038,170,11,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2011/cage-teachpack",5038,170,11,3]),types.vector(["bootstrap2011/cage-teachpack",5042,170,15,1]),types.vector(["bootstrap2011/cage-teachpack",5044,170,17,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5052,171,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5056,171,9,5]),types.vector(["bootstrap2011/cage-teachpack",5062,171,15,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5056,171,9,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5066,171,19,7]),types.vector(["bootstrap2011/cage-teachpack",5074,171,27,1]),types.vector(["bootstrap2011/cage-teachpack",5076,171,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5065,171,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5066,171,19,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5080,171,33,6]),types.vector(["bootstrap2011/cage-teachpack",5087,171,40,1]),types.vector(["bootstrap2011/cage-teachpack",5089,171,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5079,171,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5080,171,33,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}}]}}, 'provides': ["pick","sq","subset?","tangent","type","start","string->image","sine","put-image","in?","number->image","overlay-at","cosine"]}; +window.COLLECTIONS["bootstrap2011/cage-teachpack"] = { 'name': "bootstrap2011/cage-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"onscreen?*"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"draw-butterfly"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-x"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"world-y"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"butterfly"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",307,14,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",327,15,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",348,17,8,9])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",359,17,19,10]),types.vector(["bootstrap2011/cage-teachpack",370,17,30,61]),types.vector(["bootstrap2011/cage-teachpack",358,17,18,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",358,17,18,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",359,17,19,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2011/butterfly.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",525,21,15,5])},{"$":"toplevel","depth":0,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("x")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",510,21,0,27])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("y")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",606,25,9,4])}],"body":{"$":"lam","name":types.symbol("move"),"locs":[types.vector(["bootstrap2011/cage-teachpack",606,25,9,4]),types.vector(["bootstrap2011/cage-teachpack",611,25,14,1]),types.vector(["bootstrap2011/cage-teachpack",613,25,16,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",632,27,6,3]),types.vector(["bootstrap2011/cage-teachpack",636,27,10,13]),types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",632,27,6,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",637,27,11,7]),types.vector(["bootstrap2011/cage-teachpack",645,27,19,3]),types.vector(["bootstrap2011/cage-teachpack",636,27,10,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",636,27,10,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",637,27,11,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",631,27,5,19])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",660,28,6,8]),types.vector(["bootstrap2011/cage-teachpack",669,28,15,3]),types.vector(["bootstrap2011/cage-teachpack",673,28,19,6]),types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",660,28,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",659,28,5,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",688,29,6,10]),types.vector(["bootstrap2011/cage-teachpack",699,29,17,18]),types.vector(["bootstrap2011/cage-teachpack",718,29,36,11]),types.vector(["bootstrap2011/cage-teachpack",687,29,5,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",687,29,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",688,29,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",700,29,18,1]),types.vector(["bootstrap2011/cage-teachpack",702,29,20,11]),types.vector(["bootstrap2011/cage-teachpack",714,29,32,2]),types.vector(["bootstrap2011/cage-teachpack",699,29,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",699,29,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",700,29,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",703,29,21,7]),types.vector(["bootstrap2011/cage-teachpack",711,29,29,1]),types.vector(["bootstrap2011/cage-teachpack",702,29,20,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",702,29,20,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",703,29,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",719,29,37,7]),types.vector(["bootstrap2011/cage-teachpack",727,29,45,1]),types.vector(["bootstrap2011/cage-teachpack",718,29,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",718,29,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",719,29,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",738,30,6,8]),types.vector(["bootstrap2011/cage-teachpack",747,30,15,3]),types.vector(["bootstrap2011/cage-teachpack",751,30,19,7]),types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",738,30,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",737,30,5,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",767,31,6,10]),types.vector(["bootstrap2011/cage-teachpack",778,31,17,18]),types.vector(["bootstrap2011/cage-teachpack",797,31,36,11]),types.vector(["bootstrap2011/cage-teachpack",766,31,5,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",766,31,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",767,31,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",779,31,18,1]),types.vector(["bootstrap2011/cage-teachpack",781,31,20,11]),types.vector(["bootstrap2011/cage-teachpack",793,31,32,2]),types.vector(["bootstrap2011/cage-teachpack",778,31,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",778,31,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",779,31,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",782,31,21,7]),types.vector(["bootstrap2011/cage-teachpack",790,31,29,1]),types.vector(["bootstrap2011/cage-teachpack",781,31,20,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",781,31,20,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",782,31,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",798,31,37,7]),types.vector(["bootstrap2011/cage-teachpack",806,31,45,1]),types.vector(["bootstrap2011/cage-teachpack",797,31,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",797,31,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",798,31,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",817,32,6,8]),types.vector(["bootstrap2011/cage-teachpack",826,32,15,3]),types.vector(["bootstrap2011/cage-teachpack",830,32,19,6]),types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",817,32,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",816,32,5,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",845,33,6,10]),types.vector(["bootstrap2011/cage-teachpack",856,33,17,11]),types.vector(["bootstrap2011/cage-teachpack",868,33,29,18]),types.vector(["bootstrap2011/cage-teachpack",844,33,5,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",844,33,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",845,33,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",857,33,18,7]),types.vector(["bootstrap2011/cage-teachpack",865,33,26,1]),types.vector(["bootstrap2011/cage-teachpack",856,33,17,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",856,33,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",857,33,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",869,33,30,1]),types.vector(["bootstrap2011/cage-teachpack",871,33,32,11]),types.vector(["bootstrap2011/cage-teachpack",883,33,44,2]),types.vector(["bootstrap2011/cage-teachpack",868,33,29,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",868,33,29,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",869,33,30,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",872,33,33,7]),types.vector(["bootstrap2011/cage-teachpack",880,33,41,1]),types.vector(["bootstrap2011/cage-teachpack",871,33,32,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",871,33,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",872,33,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",895,34,6,8]),types.vector(["bootstrap2011/cage-teachpack",904,34,15,3]),types.vector(["bootstrap2011/cage-teachpack",908,34,19,4]),types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",895,34,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",894,34,5,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",921,35,6,10]),types.vector(["bootstrap2011/cage-teachpack",932,35,17,11]),types.vector(["bootstrap2011/cage-teachpack",944,35,29,18]),types.vector(["bootstrap2011/cage-teachpack",920,35,5,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",920,35,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",921,35,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",933,35,18,7]),types.vector(["bootstrap2011/cage-teachpack",941,35,26,1]),types.vector(["bootstrap2011/cage-teachpack",932,35,17,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",932,35,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",933,35,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",945,35,30,1]),types.vector(["bootstrap2011/cage-teachpack",947,35,32,11]),types.vector(["bootstrap2011/cage-teachpack",959,35,44,2]),types.vector(["bootstrap2011/cage-teachpack",944,35,29,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",944,35,29,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",945,35,30,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",948,35,33,7]),types.vector(["bootstrap2011/cage-teachpack",956,35,41,1]),types.vector(["bootstrap2011/cage-teachpack",947,35,32,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",947,35,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",948,35,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},{"$":"toplevel","depth":4,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",970,36,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",620,26,2,358]),types.vector(["bootstrap2011/cage-teachpack",620,26,2,358]),types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",620,26,2,358])}]}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1148,42,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2011/cage-teachpack",1148,42,9,10]),types.vector(["bootstrap2011/cage-teachpack",1159,42,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1171,43,9,200]),types.vector(["bootstrap2011/cage-teachpack",1198,44,10,172]),types.vector(["bootstrap2011/cage-teachpack",1171,43,9,200])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1171,43,9,200])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1171,43,9,200]),types.vector(["bootstrap2011/cage-teachpack",1172,43,10,14])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1381,49,9,391]),types.vector(["bootstrap2011/cage-teachpack",1403,50,10,368]),types.vector(["bootstrap2011/cage-teachpack",1381,49,9,391])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1381,49,9,391])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1381,49,9,391]),types.vector(["bootstrap2011/cage-teachpack",1382,49,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1779,61,5,14]),types.vector(["bootstrap2011/cage-teachpack",1794,61,20,1]),types.vector(["bootstrap2011/cage-teachpack",1817,62,20,40]),types.vector(["bootstrap2011/cage-teachpack",1778,61,4,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1778,61,4,80])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1818,62,21,9]),types.vector(["bootstrap2011/cage-teachpack",1828,62,31,1]),types.vector(["bootstrap2011/cage-teachpack",1830,62,33,26]),types.vector(["bootstrap2011/cage-teachpack",1817,62,20,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1817,62,20,40])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1831,62,34,11]),types.vector(["bootstrap2011/cage-teachpack",1843,62,46,5]),types.vector(["bootstrap2011/cage-teachpack",1849,62,52,6]),types.vector(["bootstrap2011/cage-teachpack",1830,62,33,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1830,62,33,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1831,62,34,11])},"rands":[{"$":"toplevel","depth":6,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1843,62,46,5])},{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1849,62,52,6])}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1404,50,11,6]),types.vector(["bootstrap2011/cage-teachpack",1412,50,19,1]),types.vector(["bootstrap2011/cage-teachpack",1414,50,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1434,51,13,11]),types.vector(["bootstrap2011/cage-teachpack",1459,52,13,244]),types.vector(["bootstrap2011/cage-teachpack",1710,58,13,32]),types.vector(["bootstrap2011/cage-teachpack",1749,59,13,1]),types.vector(["bootstrap2011/cage-teachpack",1764,60,13,5]),types.vector(["bootstrap2011/cage-teachpack",1433,51,12,337])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1433,51,12,337])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1434,51,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1460,52,14,4]),types.vector(["bootstrap2011/cage-teachpack",1480,53,14,198]),types.vector(["bootstrap2011/cage-teachpack",1693,57,14,2]),types.vector(["bootstrap2011/cage-teachpack",1696,57,17,6]),types.vector(["bootstrap2011/cage-teachpack",1459,52,13,244])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1459,52,13,244])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1460,52,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1481,53,15,13]),types.vector(["bootstrap2011/cage-teachpack",1495,53,29,16]),types.vector(["bootstrap2011/cage-teachpack",1542,54,29,28]),types.vector(["bootstrap2011/cage-teachpack",1600,55,29,19]),types.vector(["bootstrap2011/cage-teachpack",1649,56,29,28]),types.vector(["bootstrap2011/cage-teachpack",1480,53,14,198])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1480,53,14,198])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1481,53,15,13])},"rands":[{"$":"constant","value":"x-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1543,54,30,14]),types.vector(["bootstrap2011/cage-teachpack",1558,54,45,11]),types.vector(["bootstrap2011/cage-teachpack",1542,54,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1542,54,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1543,54,30,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1559,54,46,7]),types.vector(["bootstrap2011/cage-teachpack",1567,54,54,1]),types.vector(["bootstrap2011/cage-teachpack",1558,54,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1558,54,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1559,54,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":" y-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1650,56,30,14]),types.vector(["bootstrap2011/cage-teachpack",1665,56,45,11]),types.vector(["bootstrap2011/cage-teachpack",1649,56,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1649,56,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1650,56,30,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1666,56,46,7]),types.vector(["bootstrap2011/cage-teachpack",1674,56,54,1]),types.vector(["bootstrap2011/cage-teachpack",1665,56,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1665,56,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1666,56,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1711,58,14,8]),types.vector(["bootstrap2011/cage-teachpack",1720,58,23,19]),types.vector(["bootstrap2011/cage-teachpack",1740,58,43,1]),types.vector(["bootstrap2011/cage-teachpack",1710,58,13,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1710,58,13,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1711,58,14,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1721,58,24,11]),types.vector(["bootstrap2011/cage-teachpack",1733,58,36,5]),types.vector(["bootstrap2011/cage-teachpack",1720,58,23,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1720,58,23,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1721,58,24,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1199,44,11,6]),types.vector(["bootstrap2011/cage-teachpack",1207,44,19,1]),types.vector(["bootstrap2011/cage-teachpack",1209,44,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1229,45,13,11]),types.vector(["bootstrap2011/cage-teachpack",1241,45,25,9]),types.vector(["bootstrap2011/cage-teachpack",1277,46,25,11]),types.vector(["bootstrap2011/cage-teachpack",1315,47,25,22]),types.vector(["bootstrap2011/cage-teachpack",1363,48,25,5]),types.vector(["bootstrap2011/cage-teachpack",1228,45,12,141])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1228,45,12,141])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1229,45,13,11])},"rands":[{"$":"toplevel","depth":4,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1241,45,25,9])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1278,46,26,7]),types.vector(["bootstrap2011/cage-teachpack",1286,46,34,1]),types.vector(["bootstrap2011/cage-teachpack",1277,46,25,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1277,46,25,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1278,46,26,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1316,47,26,1]),types.vector(["bootstrap2011/cage-teachpack",1318,47,28,6]),types.vector(["bootstrap2011/cage-teachpack",1325,47,35,11]),types.vector(["bootstrap2011/cage-teachpack",1315,47,25,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1315,47,25,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1316,47,26,1])},"rands":[{"$":"toplevel","depth":6,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1318,47,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1326,47,36,7]),types.vector(["bootstrap2011/cage-teachpack",1334,47,44,1]),types.vector(["bootstrap2011/cage-teachpack",1325,47,35,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1325,47,35,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1326,47,36,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1872,65,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap2011/cage-teachpack",1872,65,9,5]),types.vector(["bootstrap2011/cage-teachpack",1878,65,15,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1898,66,9,139]),types.vector(["bootstrap2011/cage-teachpack",1910,66,21,126]),types.vector(["bootstrap2011/cage-teachpack",1898,66,9,139])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1898,66,9,139])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",1898,66,9,139]),types.vector(["bootstrap2011/cage-teachpack",1899,66,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2047,69,9,199]),types.vector(["bootstrap2011/cage-teachpack",2055,69,17,190]),types.vector(["bootstrap2011/cage-teachpack",2047,69,9,199])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2047,69,9,199])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",2047,69,9,199]),types.vector(["bootstrap2011/cage-teachpack",2048,69,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2253,74,5,8]),types.vector(["bootstrap2011/cage-teachpack",2262,74,14,37]),types.vector(["bootstrap2011/cage-teachpack",2314,75,14,22]),types.vector(["bootstrap2011/cage-teachpack",2351,76,14,15]),types.vector(["bootstrap2011/cage-teachpack",2252,74,4,115])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2252,74,4,115])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2253,74,5,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2263,74,15,10]),types.vector(["bootstrap2011/cage-teachpack",2274,74,26,11]),types.vector(["bootstrap2011/cage-teachpack",2286,74,38,12]),types.vector(["bootstrap2011/cage-teachpack",2262,74,14,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2262,74,14,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2263,74,15,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2275,74,27,1]),types.vector(["bootstrap2011/cage-teachpack",2277,74,29,5]),types.vector(["bootstrap2011/cage-teachpack",2283,74,35,1]),types.vector(["bootstrap2011/cage-teachpack",2274,74,26,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2274,74,26,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2275,74,27,1])},"rands":[{"$":"toplevel","depth":7,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2277,74,29,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2287,74,39,1]),types.vector(["bootstrap2011/cage-teachpack",2289,74,41,6]),types.vector(["bootstrap2011/cage-teachpack",2296,74,48,1]),types.vector(["bootstrap2011/cage-teachpack",2286,74,38,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2286,74,38,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2287,74,39,1])},"rands":[{"$":"toplevel","depth":7,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2289,74,41,6])},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2315,75,15,9]),types.vector(["bootstrap2011/cage-teachpack",2325,75,25,10]),types.vector(["bootstrap2011/cage-teachpack",2314,75,14,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2314,75,14,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2315,75,15,9])},"rands":[{"$":"toplevel","depth":4,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2325,75,25,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2352,76,15,6]),types.vector(["bootstrap2011/cage-teachpack",2359,76,22,6]),types.vector(["bootstrap2011/cage-teachpack",2351,76,14,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2351,76,14,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2352,76,15,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",2056,69,18,6]),types.vector(["bootstrap2011/cage-teachpack",2064,69,26,1]),types.vector(["bootstrap2011/cage-teachpack",2066,69,28,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2090,70,20,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2094,70,24,10]),types.vector(["bootstrap2011/cage-teachpack",2105,70,35,20]),types.vector(["bootstrap2011/cage-teachpack",2162,71,35,20]),types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2106,70,36,7]),types.vector(["bootstrap2011/cage-teachpack",2114,70,44,10]),types.vector(["bootstrap2011/cage-teachpack",2105,70,35,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2105,70,35,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2106,70,36,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2115,70,45,4]),types.vector(["bootstrap2011/cage-teachpack",2120,70,50,1]),types.vector(["bootstrap2011/cage-teachpack",2122,70,52,1]),types.vector(["bootstrap2011/cage-teachpack",2114,70,44,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2114,70,44,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2115,70,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2163,71,36,7]),types.vector(["bootstrap2011/cage-teachpack",2171,71,44,10]),types.vector(["bootstrap2011/cage-teachpack",2162,71,35,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2162,71,35,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2163,71,36,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2172,71,45,4]),types.vector(["bootstrap2011/cage-teachpack",2177,71,50,1]),types.vector(["bootstrap2011/cage-teachpack",2179,71,52,1]),types.vector(["bootstrap2011/cage-teachpack",2171,71,44,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2171,71,44,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2172,71,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2093,70,23,90])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2209,72,24,4]),types.vector(["bootstrap2011/cage-teachpack",2214,72,29,1]),types.vector(["bootstrap2011/cage-teachpack",2216,72,31,1]),types.vector(["bootstrap2011/cage-teachpack",2208,72,23,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2208,72,23,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2209,72,24,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1911,66,22,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1915,66,26,1]),types.vector(["bootstrap2011/cage-teachpack",1917,66,28,27]),types.vector(["bootstrap2011/cage-teachpack",1945,66,56,1]),types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1915,66,26,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",1918,66,29,15]),types.vector(["bootstrap2011/cage-teachpack",1934,66,45,9]),types.vector(["bootstrap2011/cage-teachpack",1917,66,28,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1917,66,28,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",1918,66,29,15])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",1914,66,25,33])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",2008,68,25,6]),types.vector(["bootstrap2011/cage-teachpack",2016,68,33,1]),types.vector(["bootstrap2011/cage-teachpack",2018,68,35,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2022,68,39,9]),types.vector(["bootstrap2011/cage-teachpack",2032,68,49,1]),types.vector(["bootstrap2011/cage-teachpack",2021,68,38,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2021,68,38,13])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2759,107,11,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2011/cage-teachpack",2759,107,11,4]),types.vector(["bootstrap2011/cage-teachpack",2764,107,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2787,109,8,10]),types.vector(["bootstrap2011/cage-teachpack",2798,109,19,3]),types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2787,109,8,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2786,109,7,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2823,110,8,7]),types.vector(["bootstrap2011/cage-teachpack",2831,110,16,3]),types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2823,110,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2822,110,7,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2854,111,8,7]),types.vector(["bootstrap2011/cage-teachpack",2862,111,16,3]),types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2854,111,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2853,111,7,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2885,112,8,6]),types.vector(["bootstrap2011/cage-teachpack",2892,112,15,3]),types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2885,112,8,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2884,112,7,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2914,113,8,8]),types.vector(["bootstrap2011/cage-teachpack",2923,113,17,3]),types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2914,113,8,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2913,113,7,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2947,114,8,5]),types.vector(["bootstrap2011/cage-teachpack",2953,114,14,3]),types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2947,114,8,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2946,114,7,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2978,115,8,7]),types.vector(["bootstrap2011/cage-teachpack",2986,115,16,3]),types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2978,115,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2977,115,7,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4]),types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},{"$":"toplevel","depth":4,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3008,116,7,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257]),types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257]),types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",2773,108,4,257])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3126,120,11,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3126,120,11,13]),types.vector(["bootstrap2011/cage-teachpack",3140,120,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3148,121,5,4]),types.vector(["bootstrap2011/cage-teachpack",3153,121,10,1]),types.vector(["bootstrap2011/cage-teachpack",3155,121,12,2]),types.vector(["bootstrap2011/cage-teachpack",3158,121,15,6]),types.vector(["bootstrap2011/cage-teachpack",3147,121,4,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3147,121,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3148,121,5,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3261,125,11,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3261,125,11,13]),types.vector(["bootstrap2011/cage-teachpack",3275,125,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3283,126,5,13]),types.vector(["bootstrap2011/cage-teachpack",3297,126,19,18]),types.vector(["bootstrap2011/cage-teachpack",3282,126,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3282,126,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3283,126,5,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3298,126,20,14]),types.vector(["bootstrap2011/cage-teachpack",3313,126,35,1]),types.vector(["bootstrap2011/cage-teachpack",3297,126,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3297,126,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3298,126,20,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3491,131,11,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3491,131,11,10]),types.vector(["bootstrap2011/cage-teachpack",3502,131,22,10]),types.vector(["bootstrap2011/cage-teachpack",3513,131,33,1]),types.vector(["bootstrap2011/cage-teachpack",3515,131,35,1]),types.vector(["bootstrap2011/cage-teachpack",3517,131,37,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3534,132,5,10]),types.vector(["bootstrap2011/cage-teachpack",3545,132,16,10]),types.vector(["bootstrap2011/cage-teachpack",3556,132,27,1]),types.vector(["bootstrap2011/cage-teachpack",3558,132,29,7]),types.vector(["bootstrap2011/cage-teachpack",3566,132,37,10]),types.vector(["bootstrap2011/cage-teachpack",3533,132,4,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3533,132,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3534,132,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3559,132,30,1]),types.vector(["bootstrap2011/cage-teachpack",3561,132,32,1]),types.vector(["bootstrap2011/cage-teachpack",3563,132,34,1]),types.vector(["bootstrap2011/cage-teachpack",3558,132,29,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3558,132,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3559,132,30,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3754,137,11,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3754,137,11,9]),types.vector(["bootstrap2011/cage-teachpack",3764,137,21,10]),types.vector(["bootstrap2011/cage-teachpack",3775,137,32,1]),types.vector(["bootstrap2011/cage-teachpack",3777,137,34,1]),types.vector(["bootstrap2011/cage-teachpack",3779,137,36,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3796,138,5,11]),types.vector(["bootstrap2011/cage-teachpack",3808,138,17,10]),types.vector(["bootstrap2011/cage-teachpack",3819,138,28,1]),types.vector(["bootstrap2011/cage-teachpack",3821,138,30,31]),types.vector(["bootstrap2011/cage-teachpack",3853,138,62,10]),types.vector(["bootstrap2011/cage-teachpack",3795,138,4,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3795,138,4,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3796,138,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3822,138,31,1]),types.vector(["bootstrap2011/cage-teachpack",3824,138,33,25]),types.vector(["bootstrap2011/cage-teachpack",3850,138,59,1]),types.vector(["bootstrap2011/cage-teachpack",3821,138,30,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3821,138,30,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3822,138,31,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3825,138,34,12]),types.vector(["bootstrap2011/cage-teachpack",3838,138,47,10]),types.vector(["bootstrap2011/cage-teachpack",3824,138,33,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3824,138,33,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3825,138,34,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3904,141,11,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2011/cage-teachpack",3904,141,11,2]),types.vector(["bootstrap2011/cage-teachpack",3907,141,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",3911,141,18,1]),types.vector(["bootstrap2011/cage-teachpack",3913,141,20,1]),types.vector(["bootstrap2011/cage-teachpack",3915,141,22,1]),types.vector(["bootstrap2011/cage-teachpack",3910,141,17,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",3910,141,17,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",3911,141,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4147,146,11,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4147,146,11,4]),types.vector(["bootstrap2011/cage-teachpack",4152,146,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4156,146,20,3]),types.vector(["bootstrap2011/cage-teachpack",4160,146,24,16]),types.vector(["bootstrap2011/cage-teachpack",4155,146,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4155,146,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4156,146,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4161,146,25,1]),types.vector(["bootstrap2011/cage-teachpack",4163,146,27,1]),types.vector(["bootstrap2011/cage-teachpack",4165,146,29,10]),types.vector(["bootstrap2011/cage-teachpack",4160,146,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4160,146,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4161,146,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4166,146,30,1]),types.vector(["bootstrap2011/cage-teachpack",4168,146,32,2]),types.vector(["bootstrap2011/cage-teachpack",4171,146,35,3]),types.vector(["bootstrap2011/cage-teachpack",4165,146,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4165,146,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4166,146,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4168,146,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4409,151,11,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4409,151,11,6]),types.vector(["bootstrap2011/cage-teachpack",4416,151,18,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4420,151,22,3]),types.vector(["bootstrap2011/cage-teachpack",4424,151,26,16]),types.vector(["bootstrap2011/cage-teachpack",4419,151,21,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4419,151,21,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4420,151,22,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4425,151,27,1]),types.vector(["bootstrap2011/cage-teachpack",4427,151,29,1]),types.vector(["bootstrap2011/cage-teachpack",4429,151,31,10]),types.vector(["bootstrap2011/cage-teachpack",4424,151,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4424,151,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4425,151,27,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4430,151,32,1]),types.vector(["bootstrap2011/cage-teachpack",4432,151,34,2]),types.vector(["bootstrap2011/cage-teachpack",4435,151,37,3]),types.vector(["bootstrap2011/cage-teachpack",4429,151,31,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4429,151,31,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4430,151,32,1])},"rands":[{"$":"toplevel","depth":5,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4432,151,34,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4671,156,11,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4671,156,11,7]),types.vector(["bootstrap2011/cage-teachpack",4679,156,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4683,156,23,3]),types.vector(["bootstrap2011/cage-teachpack",4687,156,27,16]),types.vector(["bootstrap2011/cage-teachpack",4682,156,22,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4682,156,22,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4683,156,23,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4688,156,28,1]),types.vector(["bootstrap2011/cage-teachpack",4690,156,30,1]),types.vector(["bootstrap2011/cage-teachpack",4692,156,32,10]),types.vector(["bootstrap2011/cage-teachpack",4687,156,27,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4687,156,27,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4688,156,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4693,156,33,1]),types.vector(["bootstrap2011/cage-teachpack",4695,156,35,2]),types.vector(["bootstrap2011/cage-teachpack",4698,156,38,3]),types.vector(["bootstrap2011/cage-teachpack",4692,156,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4692,156,32,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4693,156,33,1])},"rands":[{"$":"toplevel","depth":5,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4695,156,35,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4787,160,11,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4787,160,11,4]),types.vector(["bootstrap2011/cage-teachpack",4792,160,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4802,161,5,8]),types.vector(["bootstrap2011/cage-teachpack",4811,161,14,3]),types.vector(["bootstrap2011/cage-teachpack",4815,161,18,21]),types.vector(["bootstrap2011/cage-teachpack",4801,161,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4801,161,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4802,161,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4816,161,19,6]),types.vector(["bootstrap2011/cage-teachpack",4823,161,26,12]),types.vector(["bootstrap2011/cage-teachpack",4815,161,18,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4815,161,18,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4816,161,19,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4824,161,27,6]),types.vector(["bootstrap2011/cage-teachpack",4831,161,34,3]),types.vector(["bootstrap2011/cage-teachpack",4823,161,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4823,161,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4824,161,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4954,165,11,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2011/cage-teachpack",4954,165,11,7]),types.vector(["bootstrap2011/cage-teachpack",4962,165,19,1]),types.vector(["bootstrap2011/cage-teachpack",4964,165,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",4973,166,5,6]),types.vector(["bootstrap2011/cage-teachpack",4985,167,5,29]),types.vector(["bootstrap2011/cage-teachpack",5020,168,5,1]),types.vector(["bootstrap2011/cage-teachpack",4972,166,4,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4972,166,4,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",4973,166,5,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/cage-teachpack",4986,167,6,6]),types.vector(["bootstrap2011/cage-teachpack",4994,167,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5000,167,20,6]),types.vector(["bootstrap2011/cage-teachpack",5007,167,27,3]),types.vector(["bootstrap2011/cage-teachpack",5011,167,31,1]),types.vector(["bootstrap2011/cage-teachpack",4999,167,19,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",4999,167,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5000,167,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5038,170,11,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2011/cage-teachpack",5038,170,11,3]),types.vector(["bootstrap2011/cage-teachpack",5042,170,15,1]),types.vector(["bootstrap2011/cage-teachpack",5044,170,17,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5052,171,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5056,171,9,5]),types.vector(["bootstrap2011/cage-teachpack",5062,171,15,1]),types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5056,171,9,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5055,171,8,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5066,171,19,7]),types.vector(["bootstrap2011/cage-teachpack",5074,171,27,1]),types.vector(["bootstrap2011/cage-teachpack",5076,171,29,1]),types.vector(["bootstrap2011/cage-teachpack",5065,171,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5065,171,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5066,171,19,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/cage-teachpack",5080,171,33,6]),types.vector(["bootstrap2011/cage-teachpack",5087,171,40,1]),types.vector(["bootstrap2011/cage-teachpack",5089,171,42,1]),types.vector(["bootstrap2011/cage-teachpack",5079,171,32,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/cage-teachpack",5079,171,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/cage-teachpack",5080,171,33,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}}]}}, 'provides': ["pick","sq","subset?","tangent","type","start","string->image","sine","put-image","in?","number->image","overlay-at","cosine"]}; diff --git a/servlet-htdocs/collects/bootstrap2011/function-teachpack.js b/servlet-htdocs/collects/bootstrap2011/function-teachpack.js index f41001e..c470ce1 100644 --- a/servlet-htdocs/collects/bootstrap2011/function-teachpack.js +++ b/servlet-htdocs/collects/bootstrap2011/function-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2011/function-teachpack"] = { 'name': "bootstrap2011/function-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"text-add"},{"$":"global-bucket","value":"tock"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"rocket-add"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"IMAGE0"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"ROCKET"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("key=?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",418,18,8,5])}],"body":{"$":"constant","value":200}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",438,19,8,6])}],"body":{"$":"constant","value":600}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",458,20,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",466,20,16,11]),types.vector(["bootstrap2011/function-teachpack",478,20,28,5]),types.vector(["bootstrap2011/function-teachpack",484,20,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",465,20,15,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",466,20,16,11])},"rands":[{"$":"toplevel","depth":2,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",478,20,28,5])},{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",484,20,34,6])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",502,22,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",510,22,16,10]),types.vector(["bootstrap2011/function-teachpack",521,22,27,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",509,22,15,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",510,22,16,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2011/rocket.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",590,23,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",598,23,16,11]),types.vector(["bootstrap2011/function-teachpack",610,23,28,6]),types.vector(["bootstrap2011/function-teachpack",617,23,35,26]),types.vector(["bootstrap2011/function-teachpack",644,23,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",597,23,15,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",598,23,16,11])},"rands":[{"$":"toplevel","depth":3,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",610,23,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",618,23,36,1]),types.vector(["bootstrap2011/function-teachpack",620,23,38,20]),types.vector(["bootstrap2011/function-teachpack",641,23,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",617,23,35,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",618,23,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",621,23,39,11]),types.vector(["bootstrap2011/function-teachpack",633,23,51,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",620,23,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",621,23,39,11])},"rands":[{"$":"toplevel","depth":6,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",633,23,51,6])}]}}},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",645,23,63,12]),types.vector(["bootstrap2011/function-teachpack",658,23,76,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",644,23,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",645,23,63,12])},"rands":[{"$":"toplevel","depth":4,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",658,23,76,6])}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",837,28,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2011/function-teachpack",837,28,9,10]),types.vector(["bootstrap2011/function-teachpack",848,28,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",854,29,3,8]),types.vector(["bootstrap2011/function-teachpack",863,29,12,7]),types.vector(["bootstrap2011/function-teachpack",871,29,20,17]),types.vector(["bootstrap2011/function-teachpack",889,29,38,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",853,29,2,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",854,29,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",864,29,13,3]),types.vector(["bootstrap2011/function-teachpack",868,29,17,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",863,29,12,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",864,29,13,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",872,29,21,7]),types.vector(["bootstrap2011/function-teachpack",880,29,29,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",871,29,20,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",873,29,22,3]),types.vector(["bootstrap2011/function-teachpack",877,29,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",872,29,21,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",873,29,22,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",881,29,30,3]),types.vector(["bootstrap2011/function-teachpack",885,29,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",880,29,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",881,29,30,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",890,29,39,10]),types.vector(["bootstrap2011/function-teachpack",901,29,50,1]),types.vector(["bootstrap2011/function-teachpack",903,29,52,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",889,29,38,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",890,29,39,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":5,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",903,29,52,6])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1025,33,9,8])}],"body":{"$":"lam","name":types.symbol("text-add"),"locs":[types.vector(["bootstrap2011/function-teachpack",1025,33,9,8]),types.vector(["bootstrap2011/function-teachpack",1034,33,18,4]),types.vector(["bootstrap2011/function-teachpack",1039,33,23,6]),types.vector(["bootstrap2011/function-teachpack",1046,33,30,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1057,34,3,11]),types.vector(["bootstrap2011/function-teachpack",1069,34,15,79]),types.vector(["bootstrap2011/function-teachpack",1164,35,15,2]),types.vector(["bootstrap2011/function-teachpack",1183,36,15,1]),types.vector(["bootstrap2011/function-teachpack",1201,37,15,194])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1056,34,2,340])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1057,34,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1070,34,16,4]),types.vector(["bootstrap2011/function-teachpack",1075,34,21,46]),types.vector(["bootstrap2011/function-teachpack",1122,34,68,2]),types.vector(["bootstrap2011/function-teachpack",1125,34,71,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1069,34,15,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1070,34,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1076,34,22,13]),types.vector(["bootstrap2011/function-teachpack",1090,34,36,8]),types.vector(["bootstrap2011/function-teachpack",1099,34,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1075,34,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1076,34,22,13])},"rands":[{"$":"constant","value":"Time: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1100,34,46,14]),types.vector(["bootstrap2011/function-teachpack",1115,34,61,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1099,34,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1100,34,46,14])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1126,34,72,10]),types.vector(["bootstrap2011/function-teachpack",1137,34,83,2]),types.vector(["bootstrap2011/function-teachpack",1140,34,86,3]),types.vector(["bootstrap2011/function-teachpack",1144,34,90,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1125,34,71,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1126,34,72,10])},"rands":[{"$":"constant","value":41},{"$":"constant","value":128},{"$":"constant","value":38}]}}}]}}},{"$":"constant","value":67},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1202,37,16,11]),types.vector(["bootstrap2011/function-teachpack",1214,37,28,83]),types.vector(["bootstrap2011/function-teachpack",1326,38,28,2]),types.vector(["bootstrap2011/function-teachpack",1357,39,28,2]),types.vector(["bootstrap2011/function-teachpack",1388,40,28,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1201,37,15,194])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1202,37,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1215,37,29,4]),types.vector(["bootstrap2011/function-teachpack",1220,37,34,50]),types.vector(["bootstrap2011/function-teachpack",1271,37,85,2]),types.vector(["bootstrap2011/function-teachpack",1274,37,88,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1214,37,28,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1215,37,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1221,37,35,13]),types.vector(["bootstrap2011/function-teachpack",1235,37,49,10]),types.vector(["bootstrap2011/function-teachpack",1246,37,60,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1220,37,34,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1221,37,35,13])},"rands":[{"$":"constant","value":"Height: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1247,37,61,14]),types.vector(["bootstrap2011/function-teachpack",1262,37,76,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1246,37,60,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1247,37,61,14])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1275,37,89,10]),types.vector(["bootstrap2011/function-teachpack",1286,37,100,2]),types.vector(["bootstrap2011/function-teachpack",1289,37,103,2]),types.vector(["bootstrap2011/function-teachpack",1292,37,106,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1274,37,88,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1275,37,89,10])},"rands":[{"$":"constant","value":38},{"$":"constant","value":38},{"$":"constant","value":128}]}}}]}}},{"$":"constant","value":60},{"$":"constant","value":20},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1526,44,9,10])}],"body":{"$":"lam","name":types.symbol("rocket-add"),"locs":[types.vector(["bootstrap2011/function-teachpack",1526,44,9,10]),types.vector(["bootstrap2011/function-teachpack",1537,44,20,1]),types.vector(["bootstrap2011/function-teachpack",1539,44,22,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1561,46,6,2]),types.vector(["bootstrap2011/function-teachpack",1564,46,9,21]),types.vector(["bootstrap2011/function-teachpack",1586,46,31,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1561,46,6,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1565,46,10,12]),types.vector(["bootstrap2011/function-teachpack",1578,46,23,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1564,46,9,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1565,46,10,12])},"rands":[{"$":"toplevel","depth":7,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1578,46,23,6])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1587,46,32,1]),types.vector(["bootstrap2011/function-teachpack",1589,46,34,6]),types.vector(["bootstrap2011/function-teachpack",1596,46,41,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1586,46,31,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1587,46,32,1])},"rands":[{"$":"toplevel","depth":8,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1589,46,34,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1597,46,42,7]),types.vector(["bootstrap2011/function-teachpack",1605,46,50,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1596,46,41,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1598,46,43,3]),types.vector(["bootstrap2011/function-teachpack",1602,46,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1597,46,42,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1598,46,43,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1606,46,51,3]),types.vector(["bootstrap2011/function-teachpack",1610,46,55,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1605,46,50,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1606,46,51,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1622,47,6,11]),types.vector(["bootstrap2011/function-teachpack",1634,47,18,6]),types.vector(["bootstrap2011/function-teachpack",1641,47,25,3]),types.vector(["bootstrap2011/function-teachpack",1645,47,29,3]),types.vector(["bootstrap2011/function-teachpack",1649,47,33,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1621,47,5,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1622,47,6,11])},"rands":[{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1634,47,18,6])},{"$":"constant","value":100},{"$":"constant","value":200},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])},{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1669,48,11,11]),types.vector(["bootstrap2011/function-teachpack",1681,48,23,6]),types.vector(["bootstrap2011/function-teachpack",1688,48,30,3]),types.vector(["bootstrap2011/function-teachpack",1692,48,34,28]),types.vector(["bootstrap2011/function-teachpack",1721,48,63,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1668,48,10,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1669,48,11,11])},"rands":[{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1681,48,23,6])},{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1693,48,35,1]),types.vector(["bootstrap2011/function-teachpack",1695,48,37,6]),types.vector(["bootstrap2011/function-teachpack",1702,48,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1692,48,34,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1693,48,35,1])},"rands":[{"$":"toplevel","depth":6,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1695,48,37,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1703,48,45,7]),types.vector(["bootstrap2011/function-teachpack",1711,48,53,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1702,48,44,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1704,48,46,3]),types.vector(["bootstrap2011/function-teachpack",1708,48,50,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1703,48,45,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1704,48,46,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1712,48,54,3]),types.vector(["bootstrap2011/function-teachpack",1716,48,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1711,48,53,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1712,48,54,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1549,45,2,181]),types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1841,53,9,4])}],"body":{"$":"lam","name":types.symbol("tock"),"locs":[types.vector(["bootstrap2011/function-teachpack",1841,53,9,4]),types.vector(["bootstrap2011/function-teachpack",1846,53,14,1]),types.vector(["bootstrap2011/function-teachpack",1848,53,16,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1866,55,6,5]),types.vector(["bootstrap2011/function-teachpack",1872,55,12,2]),types.vector(["bootstrap2011/function-teachpack",1875,55,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1866,55,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types['char'](String.fromCharCode(32))}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1885,55,25,4]),types.vector(["bootstrap2011/function-teachpack",1890,55,30,13]),types.vector(["bootstrap2011/function-teachpack",1904,55,44,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1884,55,24,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1885,55,25,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1891,55,31,1]),types.vector(["bootstrap2011/function-teachpack",1893,55,33,1]),types.vector(["bootstrap2011/function-teachpack",1895,55,35,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1890,55,30,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1891,55,31,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1896,55,36,3]),types.vector(["bootstrap2011/function-teachpack",1900,55,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1895,55,35,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1896,55,36,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1905,55,45,3]),types.vector(["bootstrap2011/function-teachpack",1909,55,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1904,55,44,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1905,55,45,3])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])},{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1854,54,2,73]),types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1939,58,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap2011/function-teachpack",1939,58,9,5]),types.vector(["bootstrap2011/function-teachpack",1945,58,15,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1963,59,3,8]),types.vector(["bootstrap2011/function-teachpack",1972,59,12,22]),types.vector(["bootstrap2011/function-teachpack",2000,60,12,13]),types.vector(["bootstrap2011/function-teachpack",2019,61,12,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1962,59,2,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1963,59,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1973,59,13,4]),types.vector(["bootstrap2011/function-teachpack",1978,59,18,1]),types.vector(["bootstrap2011/function-teachpack",1980,59,20,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1972,59,12,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1973,59,13,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",2001,60,13,6]),types.vector(["bootstrap2011/function-teachpack",2008,60,20,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",2000,60,12,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",2001,60,13,6])},"rands":[{"$":"toplevel","depth":4,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",2008,60,20,4])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",2020,61,13,9]),types.vector(["bootstrap2011/function-teachpack",2030,61,23,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",2019,61,12,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",2020,61,13,9])},"rands":[{"$":"toplevel","depth":4,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",2030,61,23,10])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3200,108,11,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2011/function-teachpack",3200,108,11,4]),types.vector(["bootstrap2011/function-teachpack",3205,108,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3228,110,8,10]),types.vector(["bootstrap2011/function-teachpack",3239,110,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3228,110,8,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3264,111,8,7]),types.vector(["bootstrap2011/function-teachpack",3272,111,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3264,111,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3295,112,8,7]),types.vector(["bootstrap2011/function-teachpack",3303,112,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3295,112,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3326,113,8,6]),types.vector(["bootstrap2011/function-teachpack",3333,113,15,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3326,113,8,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3355,114,8,8]),types.vector(["bootstrap2011/function-teachpack",3364,114,17,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3355,114,8,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3388,115,8,5]),types.vector(["bootstrap2011/function-teachpack",3394,115,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3388,115,8,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3419,116,8,7]),types.vector(["bootstrap2011/function-teachpack",3427,116,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3419,116,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3214,109,4,257]),types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3567,121,11,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2011/function-teachpack",3567,121,11,13]),types.vector(["bootstrap2011/function-teachpack",3581,121,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3589,122,5,4]),types.vector(["bootstrap2011/function-teachpack",3594,122,10,1]),types.vector(["bootstrap2011/function-teachpack",3596,122,12,2]),types.vector(["bootstrap2011/function-teachpack",3599,122,15,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3588,122,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3589,122,5,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3702,126,11,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2011/function-teachpack",3702,126,11,13]),types.vector(["bootstrap2011/function-teachpack",3716,126,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3724,127,5,13]),types.vector(["bootstrap2011/function-teachpack",3738,127,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3723,127,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3724,127,5,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3739,127,20,14]),types.vector(["bootstrap2011/function-teachpack",3754,127,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3738,127,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3739,127,20,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3932,132,11,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2011/function-teachpack",3932,132,11,10]),types.vector(["bootstrap2011/function-teachpack",3943,132,22,10]),types.vector(["bootstrap2011/function-teachpack",3954,132,33,1]),types.vector(["bootstrap2011/function-teachpack",3956,132,35,1]),types.vector(["bootstrap2011/function-teachpack",3958,132,37,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3975,133,5,10]),types.vector(["bootstrap2011/function-teachpack",3986,133,16,10]),types.vector(["bootstrap2011/function-teachpack",3997,133,27,1]),types.vector(["bootstrap2011/function-teachpack",3999,133,29,7]),types.vector(["bootstrap2011/function-teachpack",4007,133,37,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3974,133,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3975,133,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4000,133,30,1]),types.vector(["bootstrap2011/function-teachpack",4002,133,32,1]),types.vector(["bootstrap2011/function-teachpack",4004,133,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3999,133,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4000,133,30,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4195,138,11,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2011/function-teachpack",4195,138,11,9]),types.vector(["bootstrap2011/function-teachpack",4205,138,21,10]),types.vector(["bootstrap2011/function-teachpack",4216,138,32,1]),types.vector(["bootstrap2011/function-teachpack",4218,138,34,1]),types.vector(["bootstrap2011/function-teachpack",4220,138,36,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4237,139,5,11]),types.vector(["bootstrap2011/function-teachpack",4249,139,17,10]),types.vector(["bootstrap2011/function-teachpack",4260,139,28,1]),types.vector(["bootstrap2011/function-teachpack",4262,139,30,31]),types.vector(["bootstrap2011/function-teachpack",4294,139,62,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4236,139,4,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4237,139,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4263,139,31,1]),types.vector(["bootstrap2011/function-teachpack",4265,139,33,25]),types.vector(["bootstrap2011/function-teachpack",4291,139,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4262,139,30,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4263,139,31,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4266,139,34,12]),types.vector(["bootstrap2011/function-teachpack",4279,139,47,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4265,139,33,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4266,139,34,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4345,142,11,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2011/function-teachpack",4345,142,11,2]),types.vector(["bootstrap2011/function-teachpack",4348,142,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4352,142,18,1]),types.vector(["bootstrap2011/function-teachpack",4354,142,20,1]),types.vector(["bootstrap2011/function-teachpack",4356,142,22,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4351,142,17,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4352,142,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4588,147,11,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2011/function-teachpack",4588,147,11,4]),types.vector(["bootstrap2011/function-teachpack",4593,147,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4597,147,20,3]),types.vector(["bootstrap2011/function-teachpack",4601,147,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4596,147,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4597,147,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4602,147,25,1]),types.vector(["bootstrap2011/function-teachpack",4604,147,27,1]),types.vector(["bootstrap2011/function-teachpack",4606,147,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4601,147,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4602,147,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4607,147,30,1]),types.vector(["bootstrap2011/function-teachpack",4609,147,32,2]),types.vector(["bootstrap2011/function-teachpack",4612,147,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4606,147,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4607,147,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4609,147,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4850,152,11,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2011/function-teachpack",4850,152,11,6]),types.vector(["bootstrap2011/function-teachpack",4857,152,18,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4861,152,22,3]),types.vector(["bootstrap2011/function-teachpack",4865,152,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4860,152,21,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4861,152,22,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4866,152,27,1]),types.vector(["bootstrap2011/function-teachpack",4868,152,29,1]),types.vector(["bootstrap2011/function-teachpack",4870,152,31,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4865,152,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4866,152,27,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4871,152,32,1]),types.vector(["bootstrap2011/function-teachpack",4873,152,34,2]),types.vector(["bootstrap2011/function-teachpack",4876,152,37,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4870,152,31,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4871,152,32,1])},"rands":[{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4873,152,34,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5112,157,11,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2011/function-teachpack",5112,157,11,7]),types.vector(["bootstrap2011/function-teachpack",5120,157,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5124,157,23,3]),types.vector(["bootstrap2011/function-teachpack",5128,157,27,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5123,157,22,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5124,157,23,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5129,157,28,1]),types.vector(["bootstrap2011/function-teachpack",5131,157,30,1]),types.vector(["bootstrap2011/function-teachpack",5133,157,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5128,157,27,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5129,157,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5134,157,33,1]),types.vector(["bootstrap2011/function-teachpack",5136,157,35,2]),types.vector(["bootstrap2011/function-teachpack",5139,157,38,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5133,157,32,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5134,157,33,1])},"rands":[{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5136,157,35,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5228,161,11,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2011/function-teachpack",5228,161,11,4]),types.vector(["bootstrap2011/function-teachpack",5233,161,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5243,162,5,8]),types.vector(["bootstrap2011/function-teachpack",5252,162,14,3]),types.vector(["bootstrap2011/function-teachpack",5256,162,18,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5242,162,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5243,162,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5257,162,19,6]),types.vector(["bootstrap2011/function-teachpack",5264,162,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5256,162,18,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5257,162,19,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5265,162,27,6]),types.vector(["bootstrap2011/function-teachpack",5272,162,34,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5264,162,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5265,162,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5395,166,11,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2011/function-teachpack",5395,166,11,7]),types.vector(["bootstrap2011/function-teachpack",5403,166,19,1]),types.vector(["bootstrap2011/function-teachpack",5405,166,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5414,167,5,6]),types.vector(["bootstrap2011/function-teachpack",5426,168,5,29]),types.vector(["bootstrap2011/function-teachpack",5461,169,5,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5413,167,4,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5414,167,5,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/function-teachpack",5427,168,6,6]),types.vector(["bootstrap2011/function-teachpack",5435,168,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5441,168,20,6]),types.vector(["bootstrap2011/function-teachpack",5448,168,27,3]),types.vector(["bootstrap2011/function-teachpack",5452,168,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5440,168,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5441,168,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5479,171,11,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2011/function-teachpack",5479,171,11,3]),types.vector(["bootstrap2011/function-teachpack",5483,171,15,1]),types.vector(["bootstrap2011/function-teachpack",5485,171,17,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5493,172,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5497,172,9,5]),types.vector(["bootstrap2011/function-teachpack",5503,172,15,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5497,172,9,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5507,172,19,7]),types.vector(["bootstrap2011/function-teachpack",5515,172,27,1]),types.vector(["bootstrap2011/function-teachpack",5517,172,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5506,172,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5507,172,19,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5521,172,33,6]),types.vector(["bootstrap2011/function-teachpack",5528,172,40,1]),types.vector(["bootstrap2011/function-teachpack",5530,172,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5520,172,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5521,172,33,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}}]}}, 'provides': ["pick","sq","subset?","tangent","type","start","string->image","sine","put-image","in?","number->image","overlay-at","cosine"]}; +window.COLLECTIONS["bootstrap2011/function-teachpack"] = { 'name': "bootstrap2011/function-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"text-add"},{"$":"global-bucket","value":"tock"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"rocket-add"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"IMAGE0"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"ROCKET"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("key=?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",418,18,8,5])}],"body":{"$":"constant","value":200}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",438,19,8,6])}],"body":{"$":"constant","value":600}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",458,20,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",466,20,16,11]),types.vector(["bootstrap2011/function-teachpack",478,20,28,5]),types.vector(["bootstrap2011/function-teachpack",484,20,34,6]),types.vector(["bootstrap2011/function-teachpack",465,20,15,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",465,20,15,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",466,20,16,11])},"rands":[{"$":"toplevel","depth":2,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",478,20,28,5])},{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",484,20,34,6])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",502,22,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",510,22,16,10]),types.vector(["bootstrap2011/function-teachpack",521,22,27,58]),types.vector(["bootstrap2011/function-teachpack",509,22,15,71])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",509,22,15,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",510,22,16,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2011/rocket.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",590,23,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",598,23,16,11]),types.vector(["bootstrap2011/function-teachpack",610,23,28,6]),types.vector(["bootstrap2011/function-teachpack",617,23,35,26]),types.vector(["bootstrap2011/function-teachpack",644,23,62,21]),types.vector(["bootstrap2011/function-teachpack",597,23,15,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",597,23,15,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",598,23,16,11])},"rands":[{"$":"toplevel","depth":3,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",610,23,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",618,23,36,1]),types.vector(["bootstrap2011/function-teachpack",620,23,38,20]),types.vector(["bootstrap2011/function-teachpack",641,23,59,1]),types.vector(["bootstrap2011/function-teachpack",617,23,35,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",617,23,35,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",618,23,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",621,23,39,11]),types.vector(["bootstrap2011/function-teachpack",633,23,51,6]),types.vector(["bootstrap2011/function-teachpack",620,23,38,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",620,23,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",621,23,39,11])},"rands":[{"$":"toplevel","depth":6,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",633,23,51,6])}]}}},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",645,23,63,12]),types.vector(["bootstrap2011/function-teachpack",658,23,76,6]),types.vector(["bootstrap2011/function-teachpack",644,23,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",644,23,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",645,23,63,12])},"rands":[{"$":"toplevel","depth":4,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",658,23,76,6])}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",837,28,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2011/function-teachpack",837,28,9,10]),types.vector(["bootstrap2011/function-teachpack",848,28,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",854,29,3,8]),types.vector(["bootstrap2011/function-teachpack",863,29,12,7]),types.vector(["bootstrap2011/function-teachpack",871,29,20,17]),types.vector(["bootstrap2011/function-teachpack",889,29,38,21]),types.vector(["bootstrap2011/function-teachpack",853,29,2,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",853,29,2,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",854,29,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",864,29,13,3]),types.vector(["bootstrap2011/function-teachpack",868,29,17,1]),types.vector(["bootstrap2011/function-teachpack",863,29,12,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",863,29,12,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",864,29,13,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",872,29,21,7]),types.vector(["bootstrap2011/function-teachpack",880,29,29,7]),types.vector(["bootstrap2011/function-teachpack",871,29,20,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",871,29,20,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",873,29,22,3]),types.vector(["bootstrap2011/function-teachpack",877,29,26,1]),types.vector(["bootstrap2011/function-teachpack",872,29,21,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",872,29,21,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",873,29,22,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",881,29,30,3]),types.vector(["bootstrap2011/function-teachpack",885,29,34,1]),types.vector(["bootstrap2011/function-teachpack",880,29,29,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",880,29,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",881,29,30,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",890,29,39,10]),types.vector(["bootstrap2011/function-teachpack",901,29,50,1]),types.vector(["bootstrap2011/function-teachpack",903,29,52,6]),types.vector(["bootstrap2011/function-teachpack",889,29,38,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",889,29,38,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",890,29,39,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":5,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",903,29,52,6])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":4,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1025,33,9,8])}],"body":{"$":"lam","name":types.symbol("text-add"),"locs":[types.vector(["bootstrap2011/function-teachpack",1025,33,9,8]),types.vector(["bootstrap2011/function-teachpack",1034,33,18,4]),types.vector(["bootstrap2011/function-teachpack",1039,33,23,6]),types.vector(["bootstrap2011/function-teachpack",1046,33,30,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1057,34,3,11]),types.vector(["bootstrap2011/function-teachpack",1069,34,15,79]),types.vector(["bootstrap2011/function-teachpack",1164,35,15,2]),types.vector(["bootstrap2011/function-teachpack",1183,36,15,1]),types.vector(["bootstrap2011/function-teachpack",1201,37,15,194]),types.vector(["bootstrap2011/function-teachpack",1056,34,2,340])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1056,34,2,340])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1057,34,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1070,34,16,4]),types.vector(["bootstrap2011/function-teachpack",1075,34,21,46]),types.vector(["bootstrap2011/function-teachpack",1122,34,68,2]),types.vector(["bootstrap2011/function-teachpack",1125,34,71,22]),types.vector(["bootstrap2011/function-teachpack",1069,34,15,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1069,34,15,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1070,34,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1076,34,22,13]),types.vector(["bootstrap2011/function-teachpack",1090,34,36,8]),types.vector(["bootstrap2011/function-teachpack",1099,34,45,21]),types.vector(["bootstrap2011/function-teachpack",1075,34,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1075,34,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1076,34,22,13])},"rands":[{"$":"constant","value":"Time: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1100,34,46,14]),types.vector(["bootstrap2011/function-teachpack",1115,34,61,4]),types.vector(["bootstrap2011/function-teachpack",1099,34,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1099,34,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1100,34,46,14])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1126,34,72,10]),types.vector(["bootstrap2011/function-teachpack",1137,34,83,2]),types.vector(["bootstrap2011/function-teachpack",1140,34,86,3]),types.vector(["bootstrap2011/function-teachpack",1144,34,90,2]),types.vector(["bootstrap2011/function-teachpack",1125,34,71,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1125,34,71,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1126,34,72,10])},"rands":[{"$":"constant","value":41},{"$":"constant","value":128},{"$":"constant","value":38}]}}}]}}},{"$":"constant","value":67},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1202,37,16,11]),types.vector(["bootstrap2011/function-teachpack",1214,37,28,83]),types.vector(["bootstrap2011/function-teachpack",1326,38,28,2]),types.vector(["bootstrap2011/function-teachpack",1357,39,28,2]),types.vector(["bootstrap2011/function-teachpack",1388,40,28,6]),types.vector(["bootstrap2011/function-teachpack",1201,37,15,194])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1201,37,15,194])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1202,37,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1215,37,29,4]),types.vector(["bootstrap2011/function-teachpack",1220,37,34,50]),types.vector(["bootstrap2011/function-teachpack",1271,37,85,2]),types.vector(["bootstrap2011/function-teachpack",1274,37,88,22]),types.vector(["bootstrap2011/function-teachpack",1214,37,28,83])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1214,37,28,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1215,37,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1221,37,35,13]),types.vector(["bootstrap2011/function-teachpack",1235,37,49,10]),types.vector(["bootstrap2011/function-teachpack",1246,37,60,23]),types.vector(["bootstrap2011/function-teachpack",1220,37,34,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1220,37,34,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1221,37,35,13])},"rands":[{"$":"constant","value":"Height: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1247,37,61,14]),types.vector(["bootstrap2011/function-teachpack",1262,37,76,6]),types.vector(["bootstrap2011/function-teachpack",1246,37,60,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1246,37,60,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1247,37,61,14])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1275,37,89,10]),types.vector(["bootstrap2011/function-teachpack",1286,37,100,2]),types.vector(["bootstrap2011/function-teachpack",1289,37,103,2]),types.vector(["bootstrap2011/function-teachpack",1292,37,106,3]),types.vector(["bootstrap2011/function-teachpack",1274,37,88,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1274,37,88,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1275,37,89,10])},"rands":[{"$":"constant","value":38},{"$":"constant","value":38},{"$":"constant","value":128}]}}}]}}},{"$":"constant","value":60},{"$":"constant","value":20},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1526,44,9,10])}],"body":{"$":"lam","name":types.symbol("rocket-add"),"locs":[types.vector(["bootstrap2011/function-teachpack",1526,44,9,10]),types.vector(["bootstrap2011/function-teachpack",1537,44,20,1]),types.vector(["bootstrap2011/function-teachpack",1539,44,22,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1561,46,6,2]),types.vector(["bootstrap2011/function-teachpack",1564,46,9,21]),types.vector(["bootstrap2011/function-teachpack",1586,46,31,28]),types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1561,46,6,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1565,46,10,12]),types.vector(["bootstrap2011/function-teachpack",1578,46,23,6]),types.vector(["bootstrap2011/function-teachpack",1564,46,9,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1564,46,9,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1565,46,10,12])},"rands":[{"$":"toplevel","depth":7,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1578,46,23,6])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1587,46,32,1]),types.vector(["bootstrap2011/function-teachpack",1589,46,34,6]),types.vector(["bootstrap2011/function-teachpack",1596,46,41,17]),types.vector(["bootstrap2011/function-teachpack",1586,46,31,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1586,46,31,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1587,46,32,1])},"rands":[{"$":"toplevel","depth":8,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1589,46,34,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1597,46,42,7]),types.vector(["bootstrap2011/function-teachpack",1605,46,50,7]),types.vector(["bootstrap2011/function-teachpack",1596,46,41,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1596,46,41,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1598,46,43,3]),types.vector(["bootstrap2011/function-teachpack",1602,46,47,1]),types.vector(["bootstrap2011/function-teachpack",1597,46,42,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1597,46,42,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1598,46,43,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1606,46,51,3]),types.vector(["bootstrap2011/function-teachpack",1610,46,55,1]),types.vector(["bootstrap2011/function-teachpack",1605,46,50,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1605,46,50,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1606,46,51,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1560,46,5,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1622,47,6,11]),types.vector(["bootstrap2011/function-teachpack",1634,47,18,6]),types.vector(["bootstrap2011/function-teachpack",1641,47,25,3]),types.vector(["bootstrap2011/function-teachpack",1645,47,29,3]),types.vector(["bootstrap2011/function-teachpack",1649,47,33,6]),types.vector(["bootstrap2011/function-teachpack",1621,47,5,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1621,47,5,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1622,47,6,11])},"rands":[{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1634,47,18,6])},{"$":"constant","value":100},{"$":"constant","value":200},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])},{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1663,48,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1669,48,11,11]),types.vector(["bootstrap2011/function-teachpack",1681,48,23,6]),types.vector(["bootstrap2011/function-teachpack",1688,48,30,3]),types.vector(["bootstrap2011/function-teachpack",1692,48,34,28]),types.vector(["bootstrap2011/function-teachpack",1721,48,63,6]),types.vector(["bootstrap2011/function-teachpack",1668,48,10,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1668,48,10,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1669,48,11,11])},"rands":[{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1681,48,23,6])},{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1693,48,35,1]),types.vector(["bootstrap2011/function-teachpack",1695,48,37,6]),types.vector(["bootstrap2011/function-teachpack",1702,48,44,17]),types.vector(["bootstrap2011/function-teachpack",1692,48,34,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1692,48,34,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1693,48,35,1])},"rands":[{"$":"toplevel","depth":6,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1695,48,37,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1703,48,45,7]),types.vector(["bootstrap2011/function-teachpack",1711,48,53,7]),types.vector(["bootstrap2011/function-teachpack",1702,48,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1702,48,44,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1704,48,46,3]),types.vector(["bootstrap2011/function-teachpack",1708,48,50,1]),types.vector(["bootstrap2011/function-teachpack",1703,48,45,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1703,48,45,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1704,48,46,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1712,48,54,3]),types.vector(["bootstrap2011/function-teachpack",1716,48,58,1]),types.vector(["bootstrap2011/function-teachpack",1711,48,53,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1711,48,53,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1712,48,54,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1549,45,2,181]),types.vector(["bootstrap2011/function-teachpack",1549,45,2,181]),types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1549,45,2,181])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1841,53,9,4])}],"body":{"$":"lam","name":types.symbol("tock"),"locs":[types.vector(["bootstrap2011/function-teachpack",1841,53,9,4]),types.vector(["bootstrap2011/function-teachpack",1846,53,14,1]),types.vector(["bootstrap2011/function-teachpack",1848,53,16,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1866,55,6,5]),types.vector(["bootstrap2011/function-teachpack",1872,55,12,2]),types.vector(["bootstrap2011/function-teachpack",1875,55,15,7]),types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1866,55,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types['char'](String.fromCharCode(32))}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1865,55,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1885,55,25,4]),types.vector(["bootstrap2011/function-teachpack",1890,55,30,13]),types.vector(["bootstrap2011/function-teachpack",1904,55,44,7]),types.vector(["bootstrap2011/function-teachpack",1884,55,24,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1884,55,24,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1885,55,25,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1891,55,31,1]),types.vector(["bootstrap2011/function-teachpack",1893,55,33,1]),types.vector(["bootstrap2011/function-teachpack",1895,55,35,7]),types.vector(["bootstrap2011/function-teachpack",1890,55,30,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1890,55,30,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1891,55,31,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1896,55,36,3]),types.vector(["bootstrap2011/function-teachpack",1900,55,40,1]),types.vector(["bootstrap2011/function-teachpack",1895,55,35,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1895,55,35,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1896,55,36,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1905,55,45,3]),types.vector(["bootstrap2011/function-teachpack",1909,55,49,1]),types.vector(["bootstrap2011/function-teachpack",1904,55,44,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1904,55,44,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1905,55,45,3])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])},{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1919,56,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1854,54,2,73]),types.vector(["bootstrap2011/function-teachpack",1854,54,2,73]),types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1854,54,2,73])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":3,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1939,58,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap2011/function-teachpack",1939,58,9,5]),types.vector(["bootstrap2011/function-teachpack",1945,58,15,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1963,59,3,8]),types.vector(["bootstrap2011/function-teachpack",1972,59,12,22]),types.vector(["bootstrap2011/function-teachpack",2000,60,12,13]),types.vector(["bootstrap2011/function-teachpack",2019,61,12,22]),types.vector(["bootstrap2011/function-teachpack",1962,59,2,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1962,59,2,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1963,59,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",1973,59,13,4]),types.vector(["bootstrap2011/function-teachpack",1978,59,18,1]),types.vector(["bootstrap2011/function-teachpack",1980,59,20,13]),types.vector(["bootstrap2011/function-teachpack",1972,59,12,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",1972,59,12,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",1973,59,13,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",2001,60,13,6]),types.vector(["bootstrap2011/function-teachpack",2008,60,20,4]),types.vector(["bootstrap2011/function-teachpack",2000,60,12,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",2000,60,12,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",2001,60,13,6])},"rands":[{"$":"toplevel","depth":4,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",2008,60,20,4])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",2020,61,13,9]),types.vector(["bootstrap2011/function-teachpack",2030,61,23,10]),types.vector(["bootstrap2011/function-teachpack",2019,61,12,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",2019,61,12,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",2020,61,13,9])},"rands":[{"$":"toplevel","depth":4,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",2030,61,23,10])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":6,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3200,108,11,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2011/function-teachpack",3200,108,11,4]),types.vector(["bootstrap2011/function-teachpack",3205,108,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3228,110,8,10]),types.vector(["bootstrap2011/function-teachpack",3239,110,19,3]),types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3228,110,8,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3227,110,7,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3264,111,8,7]),types.vector(["bootstrap2011/function-teachpack",3272,111,16,3]),types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3264,111,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3263,111,7,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3295,112,8,7]),types.vector(["bootstrap2011/function-teachpack",3303,112,16,3]),types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3295,112,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3294,112,7,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3326,113,8,6]),types.vector(["bootstrap2011/function-teachpack",3333,113,15,3]),types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3326,113,8,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3325,113,7,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3355,114,8,8]),types.vector(["bootstrap2011/function-teachpack",3364,114,17,3]),types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3355,114,8,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3354,114,7,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3388,115,8,5]),types.vector(["bootstrap2011/function-teachpack",3394,115,14,3]),types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3388,115,8,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3387,115,7,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3419,116,8,7]),types.vector(["bootstrap2011/function-teachpack",3427,116,16,3]),types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3419,116,8,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3418,116,7,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4]),types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},{"$":"toplevel","depth":4,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3449,117,7,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3214,109,4,257]),types.vector(["bootstrap2011/function-teachpack",3214,109,4,257]),types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])},"rands":[{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3214,109,4,257])}]}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3567,121,11,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2011/function-teachpack",3567,121,11,13]),types.vector(["bootstrap2011/function-teachpack",3581,121,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3589,122,5,4]),types.vector(["bootstrap2011/function-teachpack",3594,122,10,1]),types.vector(["bootstrap2011/function-teachpack",3596,122,12,2]),types.vector(["bootstrap2011/function-teachpack",3599,122,15,6]),types.vector(["bootstrap2011/function-teachpack",3588,122,4,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3588,122,4,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3589,122,5,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3702,126,11,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2011/function-teachpack",3702,126,11,13]),types.vector(["bootstrap2011/function-teachpack",3716,126,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3724,127,5,13]),types.vector(["bootstrap2011/function-teachpack",3738,127,19,18]),types.vector(["bootstrap2011/function-teachpack",3723,127,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3723,127,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3724,127,5,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3739,127,20,14]),types.vector(["bootstrap2011/function-teachpack",3754,127,35,1]),types.vector(["bootstrap2011/function-teachpack",3738,127,19,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3738,127,19,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3739,127,20,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3932,132,11,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2011/function-teachpack",3932,132,11,10]),types.vector(["bootstrap2011/function-teachpack",3943,132,22,10]),types.vector(["bootstrap2011/function-teachpack",3954,132,33,1]),types.vector(["bootstrap2011/function-teachpack",3956,132,35,1]),types.vector(["bootstrap2011/function-teachpack",3958,132,37,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",3975,133,5,10]),types.vector(["bootstrap2011/function-teachpack",3986,133,16,10]),types.vector(["bootstrap2011/function-teachpack",3997,133,27,1]),types.vector(["bootstrap2011/function-teachpack",3999,133,29,7]),types.vector(["bootstrap2011/function-teachpack",4007,133,37,10]),types.vector(["bootstrap2011/function-teachpack",3974,133,4,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3974,133,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",3975,133,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4000,133,30,1]),types.vector(["bootstrap2011/function-teachpack",4002,133,32,1]),types.vector(["bootstrap2011/function-teachpack",4004,133,34,1]),types.vector(["bootstrap2011/function-teachpack",3999,133,29,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",3999,133,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4000,133,30,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4195,138,11,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2011/function-teachpack",4195,138,11,9]),types.vector(["bootstrap2011/function-teachpack",4205,138,21,10]),types.vector(["bootstrap2011/function-teachpack",4216,138,32,1]),types.vector(["bootstrap2011/function-teachpack",4218,138,34,1]),types.vector(["bootstrap2011/function-teachpack",4220,138,36,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4237,139,5,11]),types.vector(["bootstrap2011/function-teachpack",4249,139,17,10]),types.vector(["bootstrap2011/function-teachpack",4260,139,28,1]),types.vector(["bootstrap2011/function-teachpack",4262,139,30,31]),types.vector(["bootstrap2011/function-teachpack",4294,139,62,10]),types.vector(["bootstrap2011/function-teachpack",4236,139,4,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4236,139,4,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4237,139,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4263,139,31,1]),types.vector(["bootstrap2011/function-teachpack",4265,139,33,25]),types.vector(["bootstrap2011/function-teachpack",4291,139,59,1]),types.vector(["bootstrap2011/function-teachpack",4262,139,30,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4262,139,30,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4263,139,31,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4266,139,34,12]),types.vector(["bootstrap2011/function-teachpack",4279,139,47,10]),types.vector(["bootstrap2011/function-teachpack",4265,139,33,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4265,139,33,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4266,139,34,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4345,142,11,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2011/function-teachpack",4345,142,11,2]),types.vector(["bootstrap2011/function-teachpack",4348,142,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4352,142,18,1]),types.vector(["bootstrap2011/function-teachpack",4354,142,20,1]),types.vector(["bootstrap2011/function-teachpack",4356,142,22,1]),types.vector(["bootstrap2011/function-teachpack",4351,142,17,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4351,142,17,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4352,142,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4588,147,11,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2011/function-teachpack",4588,147,11,4]),types.vector(["bootstrap2011/function-teachpack",4593,147,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4597,147,20,3]),types.vector(["bootstrap2011/function-teachpack",4601,147,24,16]),types.vector(["bootstrap2011/function-teachpack",4596,147,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4596,147,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4597,147,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4602,147,25,1]),types.vector(["bootstrap2011/function-teachpack",4604,147,27,1]),types.vector(["bootstrap2011/function-teachpack",4606,147,29,10]),types.vector(["bootstrap2011/function-teachpack",4601,147,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4601,147,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4602,147,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4607,147,30,1]),types.vector(["bootstrap2011/function-teachpack",4609,147,32,2]),types.vector(["bootstrap2011/function-teachpack",4612,147,35,3]),types.vector(["bootstrap2011/function-teachpack",4606,147,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4606,147,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4607,147,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4609,147,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4850,152,11,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2011/function-teachpack",4850,152,11,6]),types.vector(["bootstrap2011/function-teachpack",4857,152,18,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4861,152,22,3]),types.vector(["bootstrap2011/function-teachpack",4865,152,26,16]),types.vector(["bootstrap2011/function-teachpack",4860,152,21,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4860,152,21,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4861,152,22,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4866,152,27,1]),types.vector(["bootstrap2011/function-teachpack",4868,152,29,1]),types.vector(["bootstrap2011/function-teachpack",4870,152,31,10]),types.vector(["bootstrap2011/function-teachpack",4865,152,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4865,152,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4866,152,27,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",4871,152,32,1]),types.vector(["bootstrap2011/function-teachpack",4873,152,34,2]),types.vector(["bootstrap2011/function-teachpack",4876,152,37,3]),types.vector(["bootstrap2011/function-teachpack",4870,152,31,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",4870,152,31,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4871,152,32,1])},"rands":[{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",4873,152,34,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5112,157,11,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2011/function-teachpack",5112,157,11,7]),types.vector(["bootstrap2011/function-teachpack",5120,157,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5124,157,23,3]),types.vector(["bootstrap2011/function-teachpack",5128,157,27,16]),types.vector(["bootstrap2011/function-teachpack",5123,157,22,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5123,157,22,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5124,157,23,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5129,157,28,1]),types.vector(["bootstrap2011/function-teachpack",5131,157,30,1]),types.vector(["bootstrap2011/function-teachpack",5133,157,32,10]),types.vector(["bootstrap2011/function-teachpack",5128,157,27,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5128,157,27,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5129,157,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5134,157,33,1]),types.vector(["bootstrap2011/function-teachpack",5136,157,35,2]),types.vector(["bootstrap2011/function-teachpack",5139,157,38,3]),types.vector(["bootstrap2011/function-teachpack",5133,157,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5133,157,32,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5134,157,33,1])},"rands":[{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5136,157,35,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5228,161,11,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2011/function-teachpack",5228,161,11,4]),types.vector(["bootstrap2011/function-teachpack",5233,161,16,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5243,162,5,8]),types.vector(["bootstrap2011/function-teachpack",5252,162,14,3]),types.vector(["bootstrap2011/function-teachpack",5256,162,18,21]),types.vector(["bootstrap2011/function-teachpack",5242,162,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5242,162,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5243,162,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5257,162,19,6]),types.vector(["bootstrap2011/function-teachpack",5264,162,26,12]),types.vector(["bootstrap2011/function-teachpack",5256,162,18,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5256,162,18,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5257,162,19,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5265,162,27,6]),types.vector(["bootstrap2011/function-teachpack",5272,162,34,3]),types.vector(["bootstrap2011/function-teachpack",5264,162,26,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5264,162,26,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5265,162,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5395,166,11,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2011/function-teachpack",5395,166,11,7]),types.vector(["bootstrap2011/function-teachpack",5403,166,19,1]),types.vector(["bootstrap2011/function-teachpack",5405,166,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5414,167,5,6]),types.vector(["bootstrap2011/function-teachpack",5426,168,5,29]),types.vector(["bootstrap2011/function-teachpack",5461,169,5,1]),types.vector(["bootstrap2011/function-teachpack",5413,167,4,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5413,167,4,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5414,167,5,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2011/function-teachpack",5427,168,6,6]),types.vector(["bootstrap2011/function-teachpack",5435,168,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5441,168,20,6]),types.vector(["bootstrap2011/function-teachpack",5448,168,27,3]),types.vector(["bootstrap2011/function-teachpack",5452,168,31,1]),types.vector(["bootstrap2011/function-teachpack",5440,168,19,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5440,168,19,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5441,168,20,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5479,171,11,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2011/function-teachpack",5479,171,11,3]),types.vector(["bootstrap2011/function-teachpack",5483,171,15,1]),types.vector(["bootstrap2011/function-teachpack",5485,171,17,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5493,172,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5497,172,9,5]),types.vector(["bootstrap2011/function-teachpack",5503,172,15,1]),types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5497,172,9,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5496,172,8,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5507,172,19,7]),types.vector(["bootstrap2011/function-teachpack",5515,172,27,1]),types.vector(["bootstrap2011/function-teachpack",5517,172,29,1]),types.vector(["bootstrap2011/function-teachpack",5506,172,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5506,172,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5507,172,19,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2011/function-teachpack",5521,172,33,6]),types.vector(["bootstrap2011/function-teachpack",5528,172,40,1]),types.vector(["bootstrap2011/function-teachpack",5530,172,42,1]),types.vector(["bootstrap2011/function-teachpack",5520,172,32,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2011/function-teachpack",5520,172,32,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2011/function-teachpack",5521,172,33,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}}]}}, 'provides': ["pick","sq","subset?","tangent","type","start","string->image","sine","put-image","in?","number->image","overlay-at","cosine"]}; diff --git a/servlet-htdocs/collects/bootstrap2012/bootstrap-common.js b/servlet-htdocs/collects/bootstrap2012/bootstrap-common.js index 7f838fa..965ad65 100644 --- a/servlet-htdocs/collects/bootstrap2012/bootstrap-common.js +++ b/servlet-htdocs/collects/bootstrap2012/bootstrap-common.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2012/bootstrap-common"] = { 'name': "bootstrap2012/bootstrap-common", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"a-queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"queue-last"},{"$":"global-bucket","value":"queue?"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"queue-ref"},{"$":"global-bucket","value":"queue-set!"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"queue-first"},{"$":"global-bucket","value":"queue-empty?"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"make-queue"},{"$":"global-bucket","value":"new-queue"},{"$":"global-bucket","value":"make-cell"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"cell?"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"enqueue!"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"dequeue!"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"cell-ref"},{"$":"global-bucket","value":"cell-set!"},{"$":"global-bucket","value":"cell-rest"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"cell"},{"$":"global-bucket","value":"cell-elt"},{"$":"global-bucket","value":"boolean->image"},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",743,19,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/bootstrap-common",743,19,9,4]),types.vector(["bootstrap2012/bootstrap-common",748,19,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",766,21,5,10]),types.vector(["bootstrap2012/bootstrap-common",777,21,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",766,21,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",799,22,5,7]),types.vector(["bootstrap2012/bootstrap-common",807,22,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",799,22,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",827,23,5,7]),types.vector(["bootstrap2012/bootstrap-common",835,23,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",827,23,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",855,24,5,6]),types.vector(["bootstrap2012/bootstrap-common",862,24,12,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",855,24,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",881,25,5,8]),types.vector(["bootstrap2012/bootstrap-common",890,25,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",881,25,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",911,26,5,5]),types.vector(["bootstrap2012/bootstrap-common",917,26,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",911,26,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",939,27,5,7]),types.vector(["bootstrap2012/bootstrap-common",947,27,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",939,27,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",967,28,5,5]),types.vector(["bootstrap2012/bootstrap-common",973,28,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",967,28,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",991,29,5,5]),types.vector(["bootstrap2012/bootstrap-common",997,29,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",991,29,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1015,30,5,7]),types.vector(["bootstrap2012/bootstrap-common",1023,30,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1015,30,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",755,20,2,312]),types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1534,42,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",1534,42,9,11]),types.vector(["bootstrap2012/bootstrap-common",1546,42,21,1]),types.vector(["bootstrap2012/bootstrap-common",1548,42,23,1]),types.vector(["bootstrap2012/bootstrap-common",1550,42,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1564,43,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1569,43,8,1]),types.vector(["bootstrap2012/bootstrap-common",1571,43,10,41]),types.vector(["bootstrap2012/bootstrap-common",1613,43,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1569,43,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1572,43,11,3]),types.vector(["bootstrap2012/bootstrap-common",1576,43,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1571,43,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1572,43,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1577,43,16,1]),types.vector(["bootstrap2012/bootstrap-common",1579,43,18,15]),types.vector(["bootstrap2012/bootstrap-common",1595,43,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1576,43,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1577,43,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1580,43,19,9]),types.vector(["bootstrap2012/bootstrap-common",1592,43,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1579,43,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1580,43,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1596,43,35,9]),types.vector(["bootstrap2012/bootstrap-common",1608,43,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1595,43,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1596,43,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1564,43,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1632,44,8,1]),types.vector(["bootstrap2012/bootstrap-common",1634,44,10,41]),types.vector(["bootstrap2012/bootstrap-common",1676,44,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1632,44,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1635,44,11,3]),types.vector(["bootstrap2012/bootstrap-common",1639,44,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1634,44,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1635,44,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1640,44,16,1]),types.vector(["bootstrap2012/bootstrap-common",1642,44,18,15]),types.vector(["bootstrap2012/bootstrap-common",1658,44,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1639,44,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1640,44,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1643,44,19,11]),types.vector(["bootstrap2012/bootstrap-common",1655,44,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1642,44,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1643,44,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1659,44,35,11]),types.vector(["bootstrap2012/bootstrap-common",1671,44,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1658,44,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1659,44,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1564,43,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1695,45,8,1]),types.vector(["bootstrap2012/bootstrap-common",1697,45,10,41]),types.vector(["bootstrap2012/bootstrap-common",1739,45,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1695,45,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1698,45,11,3]),types.vector(["bootstrap2012/bootstrap-common",1702,45,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1697,45,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1698,45,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1703,45,16,1]),types.vector(["bootstrap2012/bootstrap-common",1705,45,18,15]),types.vector(["bootstrap2012/bootstrap-common",1721,45,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1702,45,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1703,45,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1706,45,19,10]),types.vector(["bootstrap2012/bootstrap-common",1718,45,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1705,45,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1706,45,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1722,45,35,10]),types.vector(["bootstrap2012/bootstrap-common",1734,45,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1721,45,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1722,45,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1564,43,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1758,46,8,1]),types.vector(["bootstrap2012/bootstrap-common",1760,46,10,41]),types.vector(["bootstrap2012/bootstrap-common",1802,46,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1758,46,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1761,46,11,3]),types.vector(["bootstrap2012/bootstrap-common",1765,46,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1760,46,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1761,46,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1766,46,16,1]),types.vector(["bootstrap2012/bootstrap-common",1768,46,18,15]),types.vector(["bootstrap2012/bootstrap-common",1784,46,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1765,46,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1766,46,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1769,46,19,11]),types.vector(["bootstrap2012/bootstrap-common",1781,46,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1768,46,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1769,46,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1785,46,35,11]),types.vector(["bootstrap2012/bootstrap-common",1797,46,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1784,46,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1785,46,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1907,50,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",1907,50,9,7]),types.vector(["bootstrap2012/bootstrap-common",1915,50,17,1]),types.vector(["bootstrap2012/bootstrap-common",1917,50,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1923,51,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1928,51,8,6]),types.vector(["bootstrap2012/bootstrap-common",1935,51,15,15]),types.vector(["bootstrap2012/bootstrap-common",1951,51,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1928,51,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1936,51,16,9]),types.vector(["bootstrap2012/bootstrap-common",1948,51,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1935,51,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1936,51,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1952,51,32,9]),types.vector(["bootstrap2012/bootstrap-common",1964,51,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1951,51,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1952,51,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1923,51,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1976,52,8,6]),types.vector(["bootstrap2012/bootstrap-common",1983,52,15,15]),types.vector(["bootstrap2012/bootstrap-common",1999,52,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1976,52,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1984,52,16,11]),types.vector(["bootstrap2012/bootstrap-common",1996,52,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1983,52,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1984,52,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2000,52,32,11]),types.vector(["bootstrap2012/bootstrap-common",2012,52,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1999,52,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2000,52,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1923,51,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2024,53,8,6]),types.vector(["bootstrap2012/bootstrap-common",2031,53,15,15]),types.vector(["bootstrap2012/bootstrap-common",2047,53,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2024,53,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2032,53,16,10]),types.vector(["bootstrap2012/bootstrap-common",2044,53,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2031,53,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2032,53,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2048,53,32,10]),types.vector(["bootstrap2012/bootstrap-common",2060,53,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2047,53,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2048,53,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1923,51,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2072,54,8,6]),types.vector(["bootstrap2012/bootstrap-common",2079,54,15,15]),types.vector(["bootstrap2012/bootstrap-common",2095,54,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2072,54,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2080,54,16,11]),types.vector(["bootstrap2012/bootstrap-common",2092,54,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2079,54,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2080,54,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2096,54,32,11]),types.vector(["bootstrap2012/bootstrap-common",2108,54,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2095,54,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2096,54,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2660,67,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/bootstrap-common",2660,67,9,10]),types.vector(["bootstrap2012/bootstrap-common",2671,67,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2687,69,5,7]),types.vector(["bootstrap2012/bootstrap-common",2695,69,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2687,69,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2703,70,5,11]),types.vector(["bootstrap2012/bootstrap-common",2715,70,17,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2702,70,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2703,70,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59]),types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2748,75,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/bootstrap-common",2748,75,9,15]),types.vector(["bootstrap2012/bootstrap-common",2764,75,25,1]),types.vector(["bootstrap2012/bootstrap-common",2766,75,27,1]),types.vector(["bootstrap2012/bootstrap-common",2768,75,29,1]),types.vector(["bootstrap2012/bootstrap-common",2770,75,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2776,76,3,1]),types.vector(["bootstrap2012/bootstrap-common",2778,76,5,7]),types.vector(["bootstrap2012/bootstrap-common",2786,76,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2775,76,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2776,76,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2779,76,6,1]),types.vector(["bootstrap2012/bootstrap-common",2781,76,8,1]),types.vector(["bootstrap2012/bootstrap-common",2783,76,10,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2778,76,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2779,76,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2800,78,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/bootstrap-common",2800,78,9,22]),types.vector(["bootstrap2012/bootstrap-common",2823,78,32,6]),types.vector(["bootstrap2012/bootstrap-common",2830,78,39,3]),types.vector(["bootstrap2012/bootstrap-common",2834,78,43,5]),types.vector(["bootstrap2012/bootstrap-common",2840,78,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2850,79,2,345]),types.vector(["bootstrap2012/bootstrap-common",2859,79,11,21]),types.vector(["bootstrap2012/bootstrap-common",2893,80,11,21]),types.vector(["bootstrap2012/bootstrap-common",2929,81,13,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2850,79,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",2850,79,2,345]),types.vector(["bootstrap2012/bootstrap-common",2857,79,9,1]),types.vector(["bootstrap2012/bootstrap-common",2891,80,9,1]),types.vector(["bootstrap2012/bootstrap-common",2925,81,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2986,82,5,6]),types.vector(["bootstrap2012/bootstrap-common",2998,83,5,39]),types.vector(["bootstrap2012/bootstrap-common",3043,84,5,39]),types.vector(["bootstrap2012/bootstrap-common",3088,85,5,49]),types.vector(["bootstrap2012/bootstrap-common",3143,86,5,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2985,82,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2986,82,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2999,83,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3003,83,10,1]),types.vector(["bootstrap2012/bootstrap-common",3005,83,12,1]),types.vector(["bootstrap2012/bootstrap-common",3007,83,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3003,83,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3011,83,18,4]),types.vector(["bootstrap2012/bootstrap-common",3016,83,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3010,83,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3011,83,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3017,83,24,3]),types.vector(["bootstrap2012/bootstrap-common",3021,83,28,7]),types.vector(["bootstrap2012/bootstrap-common",3029,83,36,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3016,83,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3022,83,29,1]),types.vector(["bootstrap2012/bootstrap-common",3024,83,31,1]),types.vector(["bootstrap2012/bootstrap-common",3026,83,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3021,83,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3022,83,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3044,84,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3048,84,10,1]),types.vector(["bootstrap2012/bootstrap-common",3050,84,12,1]),types.vector(["bootstrap2012/bootstrap-common",3052,84,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3048,84,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3056,84,18,4]),types.vector(["bootstrap2012/bootstrap-common",3061,84,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3055,84,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3056,84,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3062,84,24,3]),types.vector(["bootstrap2012/bootstrap-common",3066,84,28,1]),types.vector(["bootstrap2012/bootstrap-common",3068,84,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3061,84,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3069,84,31,1]),types.vector(["bootstrap2012/bootstrap-common",3071,84,33,1]),types.vector(["bootstrap2012/bootstrap-common",3073,84,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3068,84,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3069,84,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3089,85,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3093,85,10,1]),types.vector(["bootstrap2012/bootstrap-common",3095,85,12,1]),types.vector(["bootstrap2012/bootstrap-common",3097,85,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3093,85,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3098,85,15,1]),types.vector(["bootstrap2012/bootstrap-common",3100,85,17,5]),types.vector(["bootstrap2012/bootstrap-common",3106,85,23,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3097,85,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3098,85,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3111,85,28,4]),types.vector(["bootstrap2012/bootstrap-common",3116,85,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3110,85,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3111,85,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3117,85,34,3]),types.vector(["bootstrap2012/bootstrap-common",3121,85,38,7]),types.vector(["bootstrap2012/bootstrap-common",3129,85,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3116,85,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3122,85,39,1]),types.vector(["bootstrap2012/bootstrap-common",3124,85,41,1]),types.vector(["bootstrap2012/bootstrap-common",3126,85,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3121,85,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3122,85,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3144,86,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3148,86,10,1]),types.vector(["bootstrap2012/bootstrap-common",3150,86,12,1]),types.vector(["bootstrap2012/bootstrap-common",3152,86,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3148,86,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3153,86,15,1]),types.vector(["bootstrap2012/bootstrap-common",3155,86,17,6]),types.vector(["bootstrap2012/bootstrap-common",3162,86,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3152,86,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3153,86,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3167,86,29,4]),types.vector(["bootstrap2012/bootstrap-common",3172,86,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3166,86,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3167,86,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3173,86,35,3]),types.vector(["bootstrap2012/bootstrap-common",3177,86,39,1]),types.vector(["bootstrap2012/bootstrap-common",3179,86,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3172,86,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3180,86,42,1]),types.vector(["bootstrap2012/bootstrap-common",3182,86,44,1]),types.vector(["bootstrap2012/bootstrap-common",3184,86,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3179,86,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3180,86,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2860,79,12,9]),types.vector(["bootstrap2012/bootstrap-common",2870,79,22,3]),types.vector(["bootstrap2012/bootstrap-common",2874,79,26,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2859,79,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2860,79,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2894,80,12,5]),types.vector(["bootstrap2012/bootstrap-common",2900,80,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2893,80,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2894,80,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2901,80,19,1]),types.vector(["bootstrap2012/bootstrap-common",2903,80,21,3]),types.vector(["bootstrap2012/bootstrap-common",2907,80,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2900,80,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2901,80,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",2930,81,14,6]),types.vector(["bootstrap2012/bootstrap-common",2938,81,22,1]),types.vector(["bootstrap2012/bootstrap-common",2940,81,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2944,81,28,15]),types.vector(["bootstrap2012/bootstrap-common",2960,81,44,1]),types.vector(["bootstrap2012/bootstrap-common",2962,81,46,1]),types.vector(["bootstrap2012/bootstrap-common",2964,81,48,5]),types.vector(["bootstrap2012/bootstrap-common",2970,81,54,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2943,81,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2944,81,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3215,90,15,4])},{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"rands":[{"$":"constant","value":types.symbol("cell")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("elt")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("rest")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3314,94,15,5])},{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"rands":[{"$":"constant","value":types.symbol("queue")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"rands":[{"$":"toplevel","depth":3,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("first")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"rands":[{"$":"toplevel","depth":3,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("last")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3475,100,9,9])}],"body":{"$":"lam","name":types.symbol("new-queue"),"locs":[types.vector(["bootstrap2012/bootstrap-common",3475,100,9,9])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3489,101,3,10]),types.vector(["bootstrap2012/bootstrap-common",3500,101,14,8]),types.vector(["bootstrap2012/bootstrap-common",3509,101,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3488,101,2,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3489,101,3,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3501,101,15,3]),types.vector(["bootstrap2012/bootstrap-common",3505,101,19,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3500,101,14,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3501,101,15,3])},"rands":[{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3510,101,24,3]),types.vector(["bootstrap2012/bootstrap-common",3514,101,28,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3509,101,23,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3510,101,24,3])},"rands":[{"$":"constant","value":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3603,106,9,12])}],"body":{"$":"lam","name":types.symbol("queue-empty?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",3603,106,9,12]),types.vector(["bootstrap2012/bootstrap-common",3616,106,22,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3628,107,3,3]),types.vector(["bootstrap2012/bootstrap-common",3632,107,7,29]),types.vector(["bootstrap2012/bootstrap-common",3662,107,37,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3627,107,2,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3628,107,3,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3633,107,8,5]),types.vector(["bootstrap2012/bootstrap-common",3639,107,14,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3632,107,7,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3633,107,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3640,107,15,11]),types.vector(["bootstrap2012/bootstrap-common",3652,107,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3639,107,14,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3640,107,15,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3711,110,9,8])}],"body":{"$":"lam","name":types.symbol("enqueue!"),"locs":[types.vector(["bootstrap2012/bootstrap-common",3711,110,9,8]),types.vector(["bootstrap2012/bootstrap-common",3720,110,18,7]),types.vector(["bootstrap2012/bootstrap-common",3728,110,26,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3747,112,6,12]),types.vector(["bootstrap2012/bootstrap-common",3760,112,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3747,112,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3774,113,5,159]),types.vector(["bootstrap2012/bootstrap-common",3788,113,19,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3774,113,5,159])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",3774,113,5,159]),types.vector(["bootstrap2012/bootstrap-common",3781,113,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3845,115,10,8]),types.vector(["bootstrap2012/bootstrap-common",3854,115,19,21]),types.vector(["bootstrap2012/bootstrap-common",3876,115,41,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3844,115,9,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3845,115,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3855,115,20,11]),types.vector(["bootstrap2012/bootstrap-common",3867,115,32,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3854,115,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3855,115,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3894,116,10,8]),types.vector(["bootstrap2012/bootstrap-common",3903,116,19,20]),types.vector(["bootstrap2012/bootstrap-common",3924,116,40,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3893,116,9,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3894,116,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3904,116,20,10]),types.vector(["bootstrap2012/bootstrap-common",3915,116,31,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3903,116,19,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3904,116,20,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3789,113,20,9]),types.vector(["bootstrap2012/bootstrap-common",3799,113,30,9]),types.vector(["bootstrap2012/bootstrap-common",3809,113,40,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3788,113,19,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3789,113,20,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3800,113,31,3]),types.vector(["bootstrap2012/bootstrap-common",3804,113,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3799,113,30,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3800,113,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3810,113,41,3]),types.vector(["bootstrap2012/bootstrap-common",3814,113,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3809,113,40,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3810,113,41,3])},"rands":[{"$":"constant","value":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3950,118,5,178]),types.vector(["bootstrap2012/bootstrap-common",3964,118,19,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3950,118,5,178])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",3950,118,5,178]),types.vector(["bootstrap2012/bootstrap-common",3957,118,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4021,120,10,8]),types.vector(["bootstrap2012/bootstrap-common",4030,120,19,40]),types.vector(["bootstrap2012/bootstrap-common",4071,120,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4020,120,9,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4021,120,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4031,120,20,9]),types.vector(["bootstrap2012/bootstrap-common",4041,120,30,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4030,120,19,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4031,120,20,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4042,120,31,5]),types.vector(["bootstrap2012/bootstrap-common",4048,120,37,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4041,120,30,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4042,120,31,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4049,120,38,10]),types.vector(["bootstrap2012/bootstrap-common",4060,120,49,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4048,120,37,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4049,120,38,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4089,121,10,8]),types.vector(["bootstrap2012/bootstrap-common",4098,121,19,20]),types.vector(["bootstrap2012/bootstrap-common",4119,121,40,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4088,121,9,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4089,121,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4099,121,20,10]),types.vector(["bootstrap2012/bootstrap-common",4110,121,31,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4098,121,19,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4099,121,20,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3965,118,20,9]),types.vector(["bootstrap2012/bootstrap-common",3975,118,30,9]),types.vector(["bootstrap2012/bootstrap-common",3985,118,40,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3964,118,19,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3965,118,20,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3976,118,31,3]),types.vector(["bootstrap2012/bootstrap-common",3980,118,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3975,118,30,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3976,118,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3986,118,41,3]),types.vector(["bootstrap2012/bootstrap-common",3990,118,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3985,118,40,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3986,118,41,3])},"rands":[{"$":"constant","value":false}]}}}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395]),types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4168,124,9,8])}],"body":{"$":"lam","name":types.symbol("dequeue!"),"locs":[types.vector(["bootstrap2012/bootstrap-common",4168,124,9,8]),types.vector(["bootstrap2012/bootstrap-common",4177,124,18,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4188,125,2,402]),types.vector(["bootstrap2012/bootstrap-common",4202,125,16,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4188,125,2,402])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",4188,125,2,402]),types.vector(["bootstrap2012/bootstrap-common",4195,125,9,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4278,127,14,3]),types.vector(["bootstrap2012/bootstrap-common",4282,127,18,49]),types.vector(["bootstrap2012/bootstrap-common",4332,127,68,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4278,127,14,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4283,127,19,5]),types.vector(["bootstrap2012/bootstrap-common",4289,127,25,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4282,127,18,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4283,127,19,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4290,127,26,9]),types.vector(["bootstrap2012/bootstrap-common",4300,127,36,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4289,127,25,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4290,127,26,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4301,127,37,5]),types.vector(["bootstrap2012/bootstrap-common",4307,127,43,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4300,127,36,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4301,127,37,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4308,127,44,11]),types.vector(["bootstrap2012/bootstrap-common",4320,127,56,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4307,127,43,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4308,127,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4373,129,16,8]),types.vector(["bootstrap2012/bootstrap-common",4382,129,25,21]),types.vector(["bootstrap2012/bootstrap-common",4404,129,47,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4372,129,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4373,129,16,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4383,129,26,11]),types.vector(["bootstrap2012/bootstrap-common",4395,129,38,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4382,129,25,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4383,129,26,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4424,130,16,8]),types.vector(["bootstrap2012/bootstrap-common",4433,130,25,20]),types.vector(["bootstrap2012/bootstrap-common",4454,130,46,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4423,130,15,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4424,130,16,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4434,130,26,10]),types.vector(["bootstrap2012/bootstrap-common",4445,130,37,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4433,130,25,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4434,130,26,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4492,132,14,8]),types.vector(["bootstrap2012/bootstrap-common",4501,132,23,21]),types.vector(["bootstrap2012/bootstrap-common",4523,132,45,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4491,132,13,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4492,132,14,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4502,132,24,11]),types.vector(["bootstrap2012/bootstrap-common",4514,132,36,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4501,132,23,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4502,132,24,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4524,132,46,5]),types.vector(["bootstrap2012/bootstrap-common",4530,132,52,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4523,132,45,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4524,132,46,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4531,132,53,9]),types.vector(["bootstrap2012/bootstrap-common",4541,132,63,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4530,132,52,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4531,132,53,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4542,132,64,5]),types.vector(["bootstrap2012/bootstrap-common",4548,132,70,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4541,132,63,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4542,132,64,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4549,132,71,11]),types.vector(["bootstrap2012/bootstrap-common",4561,132,83,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4548,132,70,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4549,132,71,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305]),types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])}]}}}}},{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4203,125,17,5]),types.vector(["bootstrap2012/bootstrap-common",4209,125,23,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4202,125,16,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4203,125,17,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4210,125,24,8]),types.vector(["bootstrap2012/bootstrap-common",4219,125,33,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4209,125,23,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4210,125,24,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4220,125,34,5]),types.vector(["bootstrap2012/bootstrap-common",4226,125,40,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4219,125,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4220,125,34,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4227,125,41,11]),types.vector(["bootstrap2012/bootstrap-common",4239,125,53,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4226,125,40,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4227,125,41,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4602,135,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/bootstrap-common",4602,135,9,22]),types.vector(["bootstrap2012/bootstrap-common",4625,135,32,6]),types.vector(["bootstrap2012/bootstrap-common",4632,135,39,5]),types.vector(["bootstrap2012/bootstrap-common",4638,135,45,6]),types.vector(["bootstrap2012/bootstrap-common",4645,135,52,7]),types.vector(["bootstrap2012/bootstrap-common",4653,135,60,7]),types.vector(["bootstrap2012/bootstrap-common",4661,135,68,11]),types.vector(["bootstrap2012/bootstrap-common",4673,135,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4686,136,2,958]),types.vector(["bootstrap2012/bootstrap-common",4699,136,15,11]),types.vector(["bootstrap2012/bootstrap-common",4726,137,14,11]),types.vector(["bootstrap2012/bootstrap-common",4753,138,14,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4686,136,2,958])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",4686,136,2,958]),types.vector(["bootstrap2012/bootstrap-common",4693,136,9,5]),types.vector(["bootstrap2012/bootstrap-common",4721,137,9,4]),types.vector(["bootstrap2012/bootstrap-common",4748,138,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4783,140,7,8]),types.vector(["bootstrap2012/bootstrap-common",4792,140,16,5]),types.vector(["bootstrap2012/bootstrap-common",4799,140,23,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4782,140,6,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4783,140,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4800,140,24,15]),types.vector(["bootstrap2012/bootstrap-common",4816,140,40,7]),types.vector(["bootstrap2012/bootstrap-common",4824,140,48,7]),types.vector(["bootstrap2012/bootstrap-common",4832,140,56,5]),types.vector(["bootstrap2012/bootstrap-common",4838,140,62,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4799,140,23,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4800,140,24,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/bootstrap-common",4863,141,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,7,8,9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4920,143,25,3]),types.vector(["bootstrap2012/bootstrap-common",4924,143,29,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4919,143,24,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4920,143,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4925,143,30,12]),types.vector(["bootstrap2012/bootstrap-common",4938,143,43,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4924,143,29,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4925,143,30,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4966,144,20,637]),types.vector(["bootstrap2012/bootstrap-common",4976,144,30,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4966,144,20,637])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",4966,144,20,637]),types.vector(["bootstrap2012/bootstrap-common",4973,144,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5055,146,31,3]),types.vector(["bootstrap2012/bootstrap-common",5059,146,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5054,146,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5055,146,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5060,146,36,8]),types.vector(["bootstrap2012/bootstrap-common",5069,146,45,4]),types.vector(["bootstrap2012/bootstrap-common",5074,146,50,2]),types.vector(["bootstrap2012/bootstrap-common",5077,146,53,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5059,146,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5060,146,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5144,148,29,9]),types.vector(["bootstrap2012/bootstrap-common",5154,148,39,4]),types.vector(["bootstrap2012/bootstrap-common",5159,148,44,2]),types.vector(["bootstrap2012/bootstrap-common",5162,148,47,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5143,148,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5144,148,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5195,149,29,8]),types.vector(["bootstrap2012/bootstrap-common",5204,149,38,4]),types.vector(["bootstrap2012/bootstrap-common",5209,149,43,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5194,149,28,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5195,149,29,8])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5210,149,44,4]),types.vector(["bootstrap2012/bootstrap-common",5215,149,49,2]),types.vector(["bootstrap2012/bootstrap-common",5218,149,52,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5209,149,43,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5210,149,44,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5219,149,53,5]),types.vector(["bootstrap2012/bootstrap-common",5225,149,59,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5218,149,52,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5219,149,53,5])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5262,150,29,8]),types.vector(["bootstrap2012/bootstrap-common",5271,150,38,31]),types.vector(["bootstrap2012/bootstrap-common",5341,151,38,226])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5261,150,28,307])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5262,150,29,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5272,150,39,6]),types.vector(["bootstrap2012/bootstrap-common",5280,150,47,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5284,150,51,8]),types.vector(["bootstrap2012/bootstrap-common",5293,150,60,5]),types.vector(["bootstrap2012/bootstrap-common",5299,150,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5283,150,50,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5284,150,51,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5342,151,39,6]),types.vector(["bootstrap2012/bootstrap-common",5349,151,46,123]),types.vector(["bootstrap2012/bootstrap-common",5519,153,46,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5341,151,38,226])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5342,151,39,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5350,151,47,6]),types.vector(["bootstrap2012/bootstrap-common",5358,151,55,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5413,152,49,11]),types.vector(["bootstrap2012/bootstrap-common",5425,152,61,23]),types.vector(["bootstrap2012/bootstrap-common",5449,152,85,11]),types.vector(["bootstrap2012/bootstrap-common",5461,152,97,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5412,152,48,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5413,152,49,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5426,152,62,10]),types.vector(["bootstrap2012/bootstrap-common",5437,152,73,6]),types.vector(["bootstrap2012/bootstrap-common",5444,152,80,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5425,152,61,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5426,152,62,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5520,153,47,22]),types.vector(["bootstrap2012/bootstrap-common",5543,153,70,6]),types.vector(["bootstrap2012/bootstrap-common",5550,153,77,2]),types.vector(["bootstrap2012/bootstrap-common",5553,153,80,5]),types.vector(["bootstrap2012/bootstrap-common",5559,153,86,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5519,153,46,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5520,153,47,22])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5048,146,24,522])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5048,146,24,522])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5048,146,24,522])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5596,154,25,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5595,154,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4977,144,31,8]),types.vector(["bootstrap2012/bootstrap-common",4986,144,40,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4976,144,30,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4977,144,31,8])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4913,143,18,691])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4913,143,18,691])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4913,143,18,691])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5617,155,9,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5616,155,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5631,156,7,5]),types.vector(["bootstrap2012/bootstrap-common",5637,156,13,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5630,156,6,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5631,156,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4700,136,16,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4699,136,15,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4700,136,16,9])},"rands":[]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4727,137,15,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4726,137,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4727,137,15,9])},"rands":[]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4754,138,15,3]),types.vector(["bootstrap2012/bootstrap-common",4758,138,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4753,138,14,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4754,138,15,3])},"rands":[{"$":"constant","value":types.EMPTY}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5656,158,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/bootstrap-common",5656,158,9,16]),types.vector(["bootstrap2012/bootstrap-common",5673,158,26,3]),types.vector(["bootstrap2012/bootstrap-common",5677,158,30,7]),types.vector(["bootstrap2012/bootstrap-common",5685,158,38,7]),types.vector(["bootstrap2012/bootstrap-common",5693,158,46,12]),types.vector(["bootstrap2012/bootstrap-common",5706,158,59,17]),types.vector(["bootstrap2012/bootstrap-common",5724,158,77,9]),types.vector(["bootstrap2012/bootstrap-common",5734,158,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5754,159,9,42]),types.vector(["bootstrap2012/bootstrap-common",5757,159,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5754,159,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5754,159,9,42]),types.vector(["bootstrap2012/bootstrap-common",5755,159,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5806,160,9,25]),types.vector(["bootstrap2012/bootstrap-common",5813,160,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5806,160,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5806,160,9,25]),types.vector(["bootstrap2012/bootstrap-common",5807,160,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5841,161,9,27]),types.vector(["bootstrap2012/bootstrap-common",5849,161,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5841,161,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5841,161,9,27]),types.vector(["bootstrap2012/bootstrap-common",5842,161,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5878,162,9,142]),types.vector(["bootstrap2012/bootstrap-common",5881,162,12,138])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5878,162,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5878,162,9,142]),types.vector(["bootstrap2012/bootstrap-common",5879,162,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6030,165,9,34]),types.vector(["bootstrap2012/bootstrap-common",6033,165,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6030,165,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",6030,165,9,34]),types.vector(["bootstrap2012/bootstrap-common",6031,165,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6090,167,13,3]),types.vector(["bootstrap2012/bootstrap-common",6094,167,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6089,167,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6090,167,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6095,167,18,7]),types.vector(["bootstrap2012/bootstrap-common",6103,167,26,1]),types.vector(["bootstrap2012/bootstrap-common",6105,167,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6094,167,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6095,167,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6118,168,9,8]),types.vector(["bootstrap2012/bootstrap-common",6127,168,18,36]),types.vector(["bootstrap2012/bootstrap-common",6182,169,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6117,168,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6118,168,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",6128,168,19,6]),types.vector(["bootstrap2012/bootstrap-common",6136,168,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6142,168,33,11]),types.vector(["bootstrap2012/bootstrap-common",6154,168,45,1]),types.vector(["bootstrap2012/bootstrap-common",6156,168,47,3]),types.vector(["bootstrap2012/bootstrap-common",6160,168,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6141,168,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6142,168,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6183,169,19,22]),types.vector(["bootstrap2012/bootstrap-common",6206,169,42,1]),types.vector(["bootstrap2012/bootstrap-common",6208,169,44,5]),types.vector(["bootstrap2012/bootstrap-common",6214,169,50,6]),types.vector(["bootstrap2012/bootstrap-common",6221,169,57,7]),types.vector(["bootstrap2012/bootstrap-common",6229,169,65,7]),types.vector(["bootstrap2012/bootstrap-common",6237,169,73,1]),types.vector(["bootstrap2012/bootstrap-common",6239,169,75,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6182,169,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6183,169,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6083,167,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6083,167,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6083,167,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6259,170,7,18]),types.vector(["bootstrap2012/bootstrap-common",6278,170,26,16]),types.vector(["bootstrap2012/bootstrap-common",6295,170,43,5]),types.vector(["bootstrap2012/bootstrap-common",6301,170,49,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6258,170,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6259,170,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6279,170,27,12]),types.vector(["bootstrap2012/bootstrap-common",6292,170,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6278,170,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6279,170,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6034,165,13,10]),types.vector(["bootstrap2012/bootstrap-common",6045,165,24,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6033,165,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6034,165,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5882,162,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5916,163,17,10]),types.vector(["bootstrap2012/bootstrap-common",5927,163,28,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5915,163,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5916,163,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5958,164,17,10]),types.vector(["bootstrap2012/bootstrap-common",5969,164,28,1]),types.vector(["bootstrap2012/bootstrap-common",5971,164,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5957,164,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5958,164,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5972,164,31,15]),types.vector(["bootstrap2012/bootstrap-common",5988,164,47,7]),types.vector(["bootstrap2012/bootstrap-common",5996,164,55,7]),types.vector(["bootstrap2012/bootstrap-common",6004,164,63,5]),types.vector(["bootstrap2012/bootstrap-common",6010,164,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5971,164,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5972,164,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5850,161,18,12]),types.vector(["bootstrap2012/bootstrap-common",5863,161,31,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5849,161,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5850,161,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5814,160,17,11]),types.vector(["bootstrap2012/bootstrap-common",5826,160,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5813,160,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5814,160,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5758,159,13,12]),types.vector(["bootstrap2012/bootstrap-common",5771,159,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5757,159,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5758,159,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5772,159,27,17]),types.vector(["bootstrap2012/bootstrap-common",5790,159,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5771,159,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5772,159,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6322,172,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/bootstrap-common",6322,172,9,23]),types.vector(["bootstrap2012/bootstrap-common",6346,172,33,3]),types.vector(["bootstrap2012/bootstrap-common",6350,172,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6364,173,3,16]),types.vector(["bootstrap2012/bootstrap-common",6381,173,20,3]),types.vector(["bootstrap2012/bootstrap-common",6385,173,24,1]),types.vector(["bootstrap2012/bootstrap-common",6387,173,26,1]),types.vector(["bootstrap2012/bootstrap-common",6389,173,28,2]),types.vector(["bootstrap2012/bootstrap-common",6392,173,31,20]),types.vector(["bootstrap2012/bootstrap-common",6413,173,52,9]),types.vector(["bootstrap2012/bootstrap-common",6423,173,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6363,173,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6364,173,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6393,173,32,10]),types.vector(["bootstrap2012/bootstrap-common",6404,173,43,1]),types.vector(["bootstrap2012/bootstrap-common",6406,173,45,1]),types.vector(["bootstrap2012/bootstrap-common",6408,173,47,1]),types.vector(["bootstrap2012/bootstrap-common",6410,173,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6392,173,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6393,173,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6436,174,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/bootstrap-common",6436,174,9,24]),types.vector(["bootstrap2012/bootstrap-common",6461,174,34,3]),types.vector(["bootstrap2012/bootstrap-common",6465,174,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6478,175,2,442]),types.vector(["bootstrap2012/bootstrap-common",6490,175,14,20]),types.vector(["bootstrap2012/bootstrap-common",6533,176,21,2]),types.vector(["bootstrap2012/bootstrap-common",6554,177,17,1]),types.vector(["bootstrap2012/bootstrap-common",6570,178,13,23]),types.vector(["bootstrap2012/bootstrap-common",6608,179,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6478,175,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",6478,175,2,442]),types.vector(["bootstrap2012/bootstrap-common",6485,175,9,4]),types.vector(["bootstrap2012/bootstrap-common",6521,176,9,11]),types.vector(["bootstrap2012/bootstrap-common",6546,177,9,7]),types.vector(["bootstrap2012/bootstrap-common",6566,178,9,3]),types.vector(["bootstrap2012/bootstrap-common",6604,179,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6640,180,5,16]),types.vector(["bootstrap2012/bootstrap-common",6663,181,5,207]),types.vector(["bootstrap2012/bootstrap-common",6876,186,5,3]),types.vector(["bootstrap2012/bootstrap-common",6880,186,9,3]),types.vector(["bootstrap2012/bootstrap-common",6884,186,13,11]),types.vector(["bootstrap2012/bootstrap-common",6896,186,25,4]),types.vector(["bootstrap2012/bootstrap-common",6901,186,30,9]),types.vector(["bootstrap2012/bootstrap-common",6911,186,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6639,180,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6640,180,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6664,181,6,16]),types.vector(["bootstrap2012/bootstrap-common",6687,182,6,135]),types.vector(["bootstrap2012/bootstrap-common",6829,185,6,1]),types.vector(["bootstrap2012/bootstrap-common",6831,185,8,3]),types.vector(["bootstrap2012/bootstrap-common",6835,185,12,11]),types.vector(["bootstrap2012/bootstrap-common",6847,185,24,4]),types.vector(["bootstrap2012/bootstrap-common",6852,185,29,9]),types.vector(["bootstrap2012/bootstrap-common",6862,185,39,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6663,181,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6664,181,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6688,182,7,16]),types.vector(["bootstrap2012/bootstrap-common",6712,183,7,61]),types.vector(["bootstrap2012/bootstrap-common",6781,184,7,3]),types.vector(["bootstrap2012/bootstrap-common",6785,184,11,1]),types.vector(["bootstrap2012/bootstrap-common",6787,184,13,11]),types.vector(["bootstrap2012/bootstrap-common",6799,184,25,4]),types.vector(["bootstrap2012/bootstrap-common",6804,184,30,9]),types.vector(["bootstrap2012/bootstrap-common",6814,184,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6687,182,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6688,182,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6713,183,8,16]),types.vector(["bootstrap2012/bootstrap-common",6730,183,25,3]),types.vector(["bootstrap2012/bootstrap-common",6734,183,29,1]),types.vector(["bootstrap2012/bootstrap-common",6736,183,31,1]),types.vector(["bootstrap2012/bootstrap-common",6738,183,33,11]),types.vector(["bootstrap2012/bootstrap-common",6750,183,45,4]),types.vector(["bootstrap2012/bootstrap-common",6755,183,50,9]),types.vector(["bootstrap2012/bootstrap-common",6765,183,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6712,183,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6713,183,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6491,175,15,10]),types.vector(["bootstrap2012/bootstrap-common",6502,175,26,1]),types.vector(["bootstrap2012/bootstrap-common",6504,175,28,1]),types.vector(["bootstrap2012/bootstrap-common",6506,175,30,1]),types.vector(["bootstrap2012/bootstrap-common",6508,175,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6490,175,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6491,175,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6571,178,14,1]),types.vector(["bootstrap2012/bootstrap-common",6573,178,16,17]),types.vector(["bootstrap2012/bootstrap-common",6591,178,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6570,178,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6571,178,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6574,178,17,11]),types.vector(["bootstrap2012/bootstrap-common",6586,178,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6573,178,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6574,178,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6609,179,14,1]),types.vector(["bootstrap2012/bootstrap-common",6611,179,16,18]),types.vector(["bootstrap2012/bootstrap-common",6630,179,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6608,179,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6609,179,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6612,179,17,12]),types.vector(["bootstrap2012/bootstrap-common",6625,179,30,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6611,179,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6612,179,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7089,191,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/bootstrap-common",7089,191,9,13]),types.vector(["bootstrap2012/bootstrap-common",7103,191,23,3]),types.vector(["bootstrap2012/bootstrap-common",7107,191,27,12]),types.vector(["bootstrap2012/bootstrap-common",7120,191,40,17]),types.vector(["bootstrap2012/bootstrap-common",7138,191,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7151,192,2,299]),types.vector(["bootstrap2012/bootstrap-common",7162,192,13,25]),types.vector(["bootstrap2012/bootstrap-common",7202,193,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7151,192,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",7151,192,2,299]),types.vector(["bootstrap2012/bootstrap-common",7158,192,9,3]),types.vector(["bootstrap2012/bootstrap-common",7198,193,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7240,194,5,18]),types.vector(["bootstrap2012/bootstrap-common",7264,195,5,137]),types.vector(["bootstrap2012/bootstrap-common",7407,200,5,17]),types.vector(["bootstrap2012/bootstrap-common",7430,201,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7239,194,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7240,194,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7265,195,6,3]),types.vector(["bootstrap2012/bootstrap-common",7269,195,10,97]),types.vector(["bootstrap2012/bootstrap-common",7377,199,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7264,195,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7265,195,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",7270,195,11,6]),types.vector(["bootstrap2012/bootstrap-common",7278,195,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7294,196,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7298,196,17,11]),types.vector(["bootstrap2012/bootstrap-common",7310,196,29,1]),types.vector(["bootstrap2012/bootstrap-common",7312,196,31,3]),types.vector(["bootstrap2012/bootstrap-common",7316,196,35,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7298,196,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7378,199,11,17]),types.vector(["bootstrap2012/bootstrap-common",7396,199,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7377,199,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7378,199,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7408,200,6,11]),types.vector(["bootstrap2012/bootstrap-common",7420,200,18,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7407,200,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7408,200,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7431,201,6,12]),types.vector(["bootstrap2012/bootstrap-common",7444,201,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7430,201,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7431,201,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7163,192,14,10]),types.vector(["bootstrap2012/bootstrap-common",7174,192,25,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7162,192,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7163,192,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7203,193,14,10]),types.vector(["bootstrap2012/bootstrap-common",7214,193,25,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7202,193,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7203,193,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7573,204,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/bootstrap-common",7573,204,9,12]),types.vector(["bootstrap2012/bootstrap-common",7586,204,22,3]),types.vector(["bootstrap2012/bootstrap-common",7590,204,26,12]),types.vector(["bootstrap2012/bootstrap-common",7603,204,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7617,205,3,13]),types.vector(["bootstrap2012/bootstrap-common",7631,205,17,3]),types.vector(["bootstrap2012/bootstrap-common",7635,205,21,12]),types.vector(["bootstrap2012/bootstrap-common",7648,205,34,20]),types.vector(["bootstrap2012/bootstrap-common",7669,205,55,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7616,205,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7617,205,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7649,205,35,10]),types.vector(["bootstrap2012/bootstrap-common",7660,205,46,1]),types.vector(["bootstrap2012/bootstrap-common",7662,205,48,1]),types.vector(["bootstrap2012/bootstrap-common",7664,205,50,1]),types.vector(["bootstrap2012/bootstrap-common",7666,205,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7648,205,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7649,205,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7816,209,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/bootstrap-common",7816,209,9,11]),types.vector(["bootstrap2012/bootstrap-common",7828,209,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7836,210,3,24]),types.vector(["bootstrap2012/bootstrap-common",7861,210,28,16]),types.vector(["bootstrap2012/bootstrap-common",7878,210,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7835,210,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7836,210,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7862,210,29,10]),types.vector(["bootstrap2012/bootstrap-common",7873,210,40,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7861,210,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7862,210,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7935,213,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/bootstrap-common",7935,213,9,12]),types.vector(["bootstrap2012/bootstrap-common",7948,213,22,3]),types.vector(["bootstrap2012/bootstrap-common",7952,213,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7961,214,3,10]),types.vector(["bootstrap2012/bootstrap-common",7972,214,14,3]),types.vector(["bootstrap2012/bootstrap-common",7976,214,18,27]),types.vector(["bootstrap2012/bootstrap-common",8004,214,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7960,214,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7961,214,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7977,214,19,13]),types.vector(["bootstrap2012/bootstrap-common",7991,214,33,4]),types.vector(["bootstrap2012/bootstrap-common",7996,214,38,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7976,214,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7977,214,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8005,214,47,11]),types.vector(["bootstrap2012/bootstrap-common",8017,214,59,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8004,214,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8005,214,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8118,221,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8118,221,9,15]),types.vector(["bootstrap2012/bootstrap-common",8134,221,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8140,222,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8274,226,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8274,226,9,14]),types.vector(["bootstrap2012/bootstrap-common",8289,226,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8295,227,3,13]),types.vector(["bootstrap2012/bootstrap-common",8309,227,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8294,227,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8295,227,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8310,227,18,15]),types.vector(["bootstrap2012/bootstrap-common",8326,227,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8309,227,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8310,227,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8419,233,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8419,233,9,13]),types.vector(["bootstrap2012/bootstrap-common",8433,233,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8439,234,3,4]),types.vector(["bootstrap2012/bootstrap-common",8444,234,8,1]),types.vector(["bootstrap2012/bootstrap-common",8446,234,10,2]),types.vector(["bootstrap2012/bootstrap-common",8449,234,13,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8438,234,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8439,234,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8544,238,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8544,238,9,13]),types.vector(["bootstrap2012/bootstrap-common",8558,238,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8564,239,3,13]),types.vector(["bootstrap2012/bootstrap-common",8578,239,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8563,239,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8564,239,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8579,239,18,14]),types.vector(["bootstrap2012/bootstrap-common",8594,239,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8578,239,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8579,239,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8765,245,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8765,245,9,10]),types.vector(["bootstrap2012/bootstrap-common",8776,245,20,10]),types.vector(["bootstrap2012/bootstrap-common",8787,245,31,1]),types.vector(["bootstrap2012/bootstrap-common",8789,245,33,1]),types.vector(["bootstrap2012/bootstrap-common",8791,245,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8806,246,3,10]),types.vector(["bootstrap2012/bootstrap-common",8817,246,14,10]),types.vector(["bootstrap2012/bootstrap-common",8828,246,25,1]),types.vector(["bootstrap2012/bootstrap-common",8830,246,27,7]),types.vector(["bootstrap2012/bootstrap-common",8838,246,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8805,246,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8806,246,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8831,246,28,1]),types.vector(["bootstrap2012/bootstrap-common",8833,246,30,1]),types.vector(["bootstrap2012/bootstrap-common",8835,246,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8830,246,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8831,246,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9018,251,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9018,251,9,9]),types.vector(["bootstrap2012/bootstrap-common",9028,251,19,10]),types.vector(["bootstrap2012/bootstrap-common",9039,251,30,1]),types.vector(["bootstrap2012/bootstrap-common",9041,251,32,1]),types.vector(["bootstrap2012/bootstrap-common",9043,251,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9058,252,3,11]),types.vector(["bootstrap2012/bootstrap-common",9070,252,15,10]),types.vector(["bootstrap2012/bootstrap-common",9081,252,26,1]),types.vector(["bootstrap2012/bootstrap-common",9083,252,28,31]),types.vector(["bootstrap2012/bootstrap-common",9115,252,60,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9057,252,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9058,252,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9084,252,29,1]),types.vector(["bootstrap2012/bootstrap-common",9086,252,31,25]),types.vector(["bootstrap2012/bootstrap-common",9112,252,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9083,252,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9084,252,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9087,252,32,12]),types.vector(["bootstrap2012/bootstrap-common",9100,252,45,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9086,252,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9087,252,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9202,255,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9202,255,9,2]),types.vector(["bootstrap2012/bootstrap-common",9205,255,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9209,255,16,1]),types.vector(["bootstrap2012/bootstrap-common",9211,255,18,1]),types.vector(["bootstrap2012/bootstrap-common",9213,255,20,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9208,255,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9209,255,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9435,260,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9435,260,9,4]),types.vector(["bootstrap2012/bootstrap-common",9440,260,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9444,260,18,3]),types.vector(["bootstrap2012/bootstrap-common",9448,260,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9443,260,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9444,260,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9449,260,23,1]),types.vector(["bootstrap2012/bootstrap-common",9451,260,25,1]),types.vector(["bootstrap2012/bootstrap-common",9453,260,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9448,260,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9449,260,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9454,260,28,1]),types.vector(["bootstrap2012/bootstrap-common",9456,260,30,2]),types.vector(["bootstrap2012/bootstrap-common",9459,260,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9453,260,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9454,260,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9456,260,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9687,265,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9687,265,9,6]),types.vector(["bootstrap2012/bootstrap-common",9694,265,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9698,265,20,3]),types.vector(["bootstrap2012/bootstrap-common",9702,265,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9697,265,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9698,265,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9703,265,25,1]),types.vector(["bootstrap2012/bootstrap-common",9705,265,27,1]),types.vector(["bootstrap2012/bootstrap-common",9707,265,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9702,265,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9703,265,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9708,265,30,1]),types.vector(["bootstrap2012/bootstrap-common",9710,265,32,2]),types.vector(["bootstrap2012/bootstrap-common",9713,265,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9707,265,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9708,265,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9710,265,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9939,270,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9939,270,9,7]),types.vector(["bootstrap2012/bootstrap-common",9947,270,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9951,270,21,3]),types.vector(["bootstrap2012/bootstrap-common",9955,270,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9950,270,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9951,270,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9956,270,26,1]),types.vector(["bootstrap2012/bootstrap-common",9958,270,28,1]),types.vector(["bootstrap2012/bootstrap-common",9960,270,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9955,270,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9956,270,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9961,270,31,1]),types.vector(["bootstrap2012/bootstrap-common",9963,270,33,2]),types.vector(["bootstrap2012/bootstrap-common",9966,270,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9960,270,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9961,270,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9963,270,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10049,274,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/bootstrap-common",10049,274,9,4]),types.vector(["bootstrap2012/bootstrap-common",10054,274,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10062,275,3,8]),types.vector(["bootstrap2012/bootstrap-common",10071,275,12,3]),types.vector(["bootstrap2012/bootstrap-common",10075,275,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10061,275,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10062,275,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10076,275,17,6]),types.vector(["bootstrap2012/bootstrap-common",10083,275,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10075,275,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10076,275,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10084,275,25,6]),types.vector(["bootstrap2012/bootstrap-common",10091,275,32,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10083,275,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10084,275,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10206,279,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",10206,279,9,7]),types.vector(["bootstrap2012/bootstrap-common",10214,279,17,1]),types.vector(["bootstrap2012/bootstrap-common",10216,279,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10223,280,3,6]),types.vector(["bootstrap2012/bootstrap-common",10233,281,3,29]),types.vector(["bootstrap2012/bootstrap-common",10266,282,3,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10222,280,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10223,280,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",10234,281,4,6]),types.vector(["bootstrap2012/bootstrap-common",10242,281,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10248,281,18,6]),types.vector(["bootstrap2012/bootstrap-common",10255,281,25,3]),types.vector(["bootstrap2012/bootstrap-common",10259,281,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10247,281,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10248,281,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10280,284,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",10280,284,9,3]),types.vector(["bootstrap2012/bootstrap-common",10284,284,13,1]),types.vector(["bootstrap2012/bootstrap-common",10286,284,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10292,285,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10296,285,7,5]),types.vector(["bootstrap2012/bootstrap-common",10302,285,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10296,285,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10306,285,17,7]),types.vector(["bootstrap2012/bootstrap-common",10314,285,25,1]),types.vector(["bootstrap2012/bootstrap-common",10316,285,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10305,285,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10306,285,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10320,285,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10324,285,35,3]),types.vector(["bootstrap2012/bootstrap-common",10328,285,39,12]),types.vector(["bootstrap2012/bootstrap-common",10341,285,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10324,285,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10329,285,40,6]),types.vector(["bootstrap2012/bootstrap-common",10336,285,47,1]),types.vector(["bootstrap2012/bootstrap-common",10338,285,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10328,285,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10329,285,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10365,288,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/bootstrap-common",10365,288,9,7]),types.vector(["bootstrap2012/bootstrap-common",10373,288,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10381,289,3,7]),types.vector(["bootstrap2012/bootstrap-common",10389,289,11,3]),types.vector(["bootstrap2012/bootstrap-common",10393,289,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10380,289,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10381,289,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10394,289,16,9]),types.vector(["bootstrap2012/bootstrap-common",10404,289,26,17]),types.vector(["bootstrap2012/bootstrap-common",10422,289,44,18]),types.vector(["bootstrap2012/bootstrap-common",10441,289,63,7]),types.vector(["bootstrap2012/bootstrap-common",10449,289,71,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10393,289,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10394,289,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10405,289,27,11]),types.vector(["bootstrap2012/bootstrap-common",10417,289,39,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10404,289,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10405,289,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10423,289,45,12]),types.vector(["bootstrap2012/bootstrap-common",10436,289,58,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10422,289,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10423,289,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}}]}}, 'provides': ["in?","sine","subset?","tangent","type","sq","string->image","overlay-at","pick","put-image","number->image","boolean->string","color->alpha","cosine","clipart/url","boolean->image"]}; +window.COLLECTIONS["bootstrap2012/bootstrap-common"] = { 'name': "bootstrap2012/bootstrap-common", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"a-queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"queue-last"},{"$":"global-bucket","value":"queue?"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"queue-ref"},{"$":"global-bucket","value":"queue-set!"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"queue-first"},{"$":"global-bucket","value":"queue-empty?"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"make-queue"},{"$":"global-bucket","value":"new-queue"},{"$":"global-bucket","value":"make-cell"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"cell?"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"enqueue!"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"dequeue!"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"cell-ref"},{"$":"global-bucket","value":"cell-set!"},{"$":"global-bucket","value":"cell-rest"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"cell"},{"$":"global-bucket","value":"cell-elt"},{"$":"global-bucket","value":"boolean->image"},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",743,19,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/bootstrap-common",743,19,9,4]),types.vector(["bootstrap2012/bootstrap-common",748,19,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",766,21,5,10]),types.vector(["bootstrap2012/bootstrap-common",777,21,16,3]),types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",766,21,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",765,21,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",799,22,5,7]),types.vector(["bootstrap2012/bootstrap-common",807,22,13,3]),types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",799,22,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",798,22,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",827,23,5,7]),types.vector(["bootstrap2012/bootstrap-common",835,23,13,3]),types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",827,23,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",826,23,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",855,24,5,6]),types.vector(["bootstrap2012/bootstrap-common",862,24,12,3]),types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",855,24,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",854,24,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",881,25,5,8]),types.vector(["bootstrap2012/bootstrap-common",890,25,14,3]),types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",881,25,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",880,25,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",911,26,5,5]),types.vector(["bootstrap2012/bootstrap-common",917,26,11,3]),types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",911,26,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",910,26,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",939,27,5,7]),types.vector(["bootstrap2012/bootstrap-common",947,27,13,3]),types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",939,27,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",938,27,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",967,28,5,5]),types.vector(["bootstrap2012/bootstrap-common",973,28,11,3]),types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",967,28,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",966,28,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",991,29,5,5]),types.vector(["bootstrap2012/bootstrap-common",997,29,11,3]),types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",991,29,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",990,29,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1015,30,5,7]),types.vector(["bootstrap2012/bootstrap-common",1023,30,13,3]),types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1015,30,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1014,30,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4]),types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1045,31,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",755,20,2,312]),types.vector(["bootstrap2012/bootstrap-common",755,20,2,312]),types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",755,20,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1534,42,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",1534,42,9,11]),types.vector(["bootstrap2012/bootstrap-common",1546,42,21,1]),types.vector(["bootstrap2012/bootstrap-common",1548,42,23,1]),types.vector(["bootstrap2012/bootstrap-common",1550,42,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1564,43,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1569,43,8,1]),types.vector(["bootstrap2012/bootstrap-common",1571,43,10,41]),types.vector(["bootstrap2012/bootstrap-common",1613,43,52,9]),types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1569,43,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1572,43,11,3]),types.vector(["bootstrap2012/bootstrap-common",1576,43,15,35]),types.vector(["bootstrap2012/bootstrap-common",1571,43,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1571,43,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1572,43,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1577,43,16,1]),types.vector(["bootstrap2012/bootstrap-common",1579,43,18,15]),types.vector(["bootstrap2012/bootstrap-common",1595,43,34,15]),types.vector(["bootstrap2012/bootstrap-common",1576,43,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1576,43,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1577,43,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1580,43,19,9]),types.vector(["bootstrap2012/bootstrap-common",1592,43,31,1]),types.vector(["bootstrap2012/bootstrap-common",1579,43,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1579,43,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1580,43,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1596,43,35,9]),types.vector(["bootstrap2012/bootstrap-common",1608,43,47,1]),types.vector(["bootstrap2012/bootstrap-common",1595,43,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1595,43,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1596,43,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1568,43,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1564,43,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1632,44,8,1]),types.vector(["bootstrap2012/bootstrap-common",1634,44,10,41]),types.vector(["bootstrap2012/bootstrap-common",1676,44,52,9]),types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1632,44,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1635,44,11,3]),types.vector(["bootstrap2012/bootstrap-common",1639,44,15,35]),types.vector(["bootstrap2012/bootstrap-common",1634,44,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1634,44,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1635,44,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1640,44,16,1]),types.vector(["bootstrap2012/bootstrap-common",1642,44,18,15]),types.vector(["bootstrap2012/bootstrap-common",1658,44,34,15]),types.vector(["bootstrap2012/bootstrap-common",1639,44,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1639,44,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1640,44,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1643,44,19,11]),types.vector(["bootstrap2012/bootstrap-common",1655,44,31,1]),types.vector(["bootstrap2012/bootstrap-common",1642,44,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1642,44,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1643,44,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1659,44,35,11]),types.vector(["bootstrap2012/bootstrap-common",1671,44,47,1]),types.vector(["bootstrap2012/bootstrap-common",1658,44,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1658,44,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1659,44,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1631,44,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1564,43,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1695,45,8,1]),types.vector(["bootstrap2012/bootstrap-common",1697,45,10,41]),types.vector(["bootstrap2012/bootstrap-common",1739,45,52,9]),types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1695,45,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1698,45,11,3]),types.vector(["bootstrap2012/bootstrap-common",1702,45,15,35]),types.vector(["bootstrap2012/bootstrap-common",1697,45,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1697,45,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1698,45,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1703,45,16,1]),types.vector(["bootstrap2012/bootstrap-common",1705,45,18,15]),types.vector(["bootstrap2012/bootstrap-common",1721,45,34,15]),types.vector(["bootstrap2012/bootstrap-common",1702,45,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1702,45,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1703,45,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1706,45,19,10]),types.vector(["bootstrap2012/bootstrap-common",1718,45,31,1]),types.vector(["bootstrap2012/bootstrap-common",1705,45,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1705,45,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1706,45,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1722,45,35,10]),types.vector(["bootstrap2012/bootstrap-common",1734,45,47,1]),types.vector(["bootstrap2012/bootstrap-common",1721,45,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1721,45,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1722,45,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1694,45,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1564,43,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1758,46,8,1]),types.vector(["bootstrap2012/bootstrap-common",1760,46,10,41]),types.vector(["bootstrap2012/bootstrap-common",1802,46,52,9]),types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1758,46,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1761,46,11,3]),types.vector(["bootstrap2012/bootstrap-common",1765,46,15,35]),types.vector(["bootstrap2012/bootstrap-common",1760,46,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1760,46,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1761,46,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1766,46,16,1]),types.vector(["bootstrap2012/bootstrap-common",1768,46,18,15]),types.vector(["bootstrap2012/bootstrap-common",1784,46,34,15]),types.vector(["bootstrap2012/bootstrap-common",1765,46,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1765,46,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1766,46,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1769,46,19,11]),types.vector(["bootstrap2012/bootstrap-common",1781,46,31,1]),types.vector(["bootstrap2012/bootstrap-common",1768,46,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1768,46,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1769,46,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1785,46,35,11]),types.vector(["bootstrap2012/bootstrap-common",1797,46,47,1]),types.vector(["bootstrap2012/bootstrap-common",1784,46,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1784,46,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1785,46,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1757,46,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1907,50,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",1907,50,9,7]),types.vector(["bootstrap2012/bootstrap-common",1915,50,17,1]),types.vector(["bootstrap2012/bootstrap-common",1917,50,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1923,51,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1928,51,8,6]),types.vector(["bootstrap2012/bootstrap-common",1935,51,15,15]),types.vector(["bootstrap2012/bootstrap-common",1951,51,31,15]),types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1928,51,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1936,51,16,9]),types.vector(["bootstrap2012/bootstrap-common",1948,51,28,1]),types.vector(["bootstrap2012/bootstrap-common",1935,51,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1935,51,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1936,51,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1952,51,32,9]),types.vector(["bootstrap2012/bootstrap-common",1964,51,44,1]),types.vector(["bootstrap2012/bootstrap-common",1951,51,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1951,51,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1952,51,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1927,51,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1923,51,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1976,52,8,6]),types.vector(["bootstrap2012/bootstrap-common",1983,52,15,15]),types.vector(["bootstrap2012/bootstrap-common",1999,52,31,15]),types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1976,52,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",1984,52,16,11]),types.vector(["bootstrap2012/bootstrap-common",1996,52,28,1]),types.vector(["bootstrap2012/bootstrap-common",1983,52,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1983,52,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",1984,52,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2000,52,32,11]),types.vector(["bootstrap2012/bootstrap-common",2012,52,44,1]),types.vector(["bootstrap2012/bootstrap-common",1999,52,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1999,52,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2000,52,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1975,52,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1923,51,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2024,53,8,6]),types.vector(["bootstrap2012/bootstrap-common",2031,53,15,15]),types.vector(["bootstrap2012/bootstrap-common",2047,53,31,15]),types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2024,53,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2032,53,16,10]),types.vector(["bootstrap2012/bootstrap-common",2044,53,28,1]),types.vector(["bootstrap2012/bootstrap-common",2031,53,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2031,53,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2032,53,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2048,53,32,10]),types.vector(["bootstrap2012/bootstrap-common",2060,53,44,1]),types.vector(["bootstrap2012/bootstrap-common",2047,53,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2047,53,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2048,53,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2023,53,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",1923,51,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2072,54,8,6]),types.vector(["bootstrap2012/bootstrap-common",2079,54,15,15]),types.vector(["bootstrap2012/bootstrap-common",2095,54,31,15]),types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2072,54,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2080,54,16,11]),types.vector(["bootstrap2012/bootstrap-common",2092,54,28,1]),types.vector(["bootstrap2012/bootstrap-common",2079,54,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2079,54,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2080,54,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2096,54,32,11]),types.vector(["bootstrap2012/bootstrap-common",2108,54,44,1]),types.vector(["bootstrap2012/bootstrap-common",2095,54,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2095,54,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2096,54,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2071,54,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2660,67,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/bootstrap-common",2660,67,9,10]),types.vector(["bootstrap2012/bootstrap-common",2671,67,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2687,69,5,7]),types.vector(["bootstrap2012/bootstrap-common",2695,69,13,1]),types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2687,69,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2686,69,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2703,70,5,11]),types.vector(["bootstrap2012/bootstrap-common",2715,70,17,1]),types.vector(["bootstrap2012/bootstrap-common",2702,70,4,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2702,70,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2703,70,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4]),types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2723,71,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59]),types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59]),types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2676,68,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2748,75,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/bootstrap-common",2748,75,9,15]),types.vector(["bootstrap2012/bootstrap-common",2764,75,25,1]),types.vector(["bootstrap2012/bootstrap-common",2766,75,27,1]),types.vector(["bootstrap2012/bootstrap-common",2768,75,29,1]),types.vector(["bootstrap2012/bootstrap-common",2770,75,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2776,76,3,1]),types.vector(["bootstrap2012/bootstrap-common",2778,76,5,7]),types.vector(["bootstrap2012/bootstrap-common",2786,76,13,1]),types.vector(["bootstrap2012/bootstrap-common",2775,76,2,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2775,76,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2776,76,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2779,76,6,1]),types.vector(["bootstrap2012/bootstrap-common",2781,76,8,1]),types.vector(["bootstrap2012/bootstrap-common",2783,76,10,1]),types.vector(["bootstrap2012/bootstrap-common",2778,76,5,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2778,76,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2779,76,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2800,78,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/bootstrap-common",2800,78,9,22]),types.vector(["bootstrap2012/bootstrap-common",2823,78,32,6]),types.vector(["bootstrap2012/bootstrap-common",2830,78,39,3]),types.vector(["bootstrap2012/bootstrap-common",2834,78,43,5]),types.vector(["bootstrap2012/bootstrap-common",2840,78,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2850,79,2,345]),types.vector(["bootstrap2012/bootstrap-common",2859,79,11,21]),types.vector(["bootstrap2012/bootstrap-common",2893,80,11,21]),types.vector(["bootstrap2012/bootstrap-common",2929,81,13,49]),types.vector(["bootstrap2012/bootstrap-common",2850,79,2,345])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2850,79,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",2850,79,2,345]),types.vector(["bootstrap2012/bootstrap-common",2857,79,9,1]),types.vector(["bootstrap2012/bootstrap-common",2891,80,9,1]),types.vector(["bootstrap2012/bootstrap-common",2925,81,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2986,82,5,6]),types.vector(["bootstrap2012/bootstrap-common",2998,83,5,39]),types.vector(["bootstrap2012/bootstrap-common",3043,84,5,39]),types.vector(["bootstrap2012/bootstrap-common",3088,85,5,49]),types.vector(["bootstrap2012/bootstrap-common",3143,86,5,50]),types.vector(["bootstrap2012/bootstrap-common",2985,82,4,209])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2985,82,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2986,82,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2999,83,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3003,83,10,1]),types.vector(["bootstrap2012/bootstrap-common",3005,83,12,1]),types.vector(["bootstrap2012/bootstrap-common",3007,83,14,1]),types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3003,83,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3002,83,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3011,83,18,4]),types.vector(["bootstrap2012/bootstrap-common",3016,83,23,15]),types.vector(["bootstrap2012/bootstrap-common",3010,83,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3010,83,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3011,83,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3017,83,24,3]),types.vector(["bootstrap2012/bootstrap-common",3021,83,28,7]),types.vector(["bootstrap2012/bootstrap-common",3029,83,36,1]),types.vector(["bootstrap2012/bootstrap-common",3016,83,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3016,83,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3022,83,29,1]),types.vector(["bootstrap2012/bootstrap-common",3024,83,31,1]),types.vector(["bootstrap2012/bootstrap-common",3026,83,33,1]),types.vector(["bootstrap2012/bootstrap-common",3021,83,28,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3021,83,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3022,83,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3044,84,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3048,84,10,1]),types.vector(["bootstrap2012/bootstrap-common",3050,84,12,1]),types.vector(["bootstrap2012/bootstrap-common",3052,84,14,1]),types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3048,84,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3047,84,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3056,84,18,4]),types.vector(["bootstrap2012/bootstrap-common",3061,84,23,15]),types.vector(["bootstrap2012/bootstrap-common",3055,84,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3055,84,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3056,84,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3062,84,24,3]),types.vector(["bootstrap2012/bootstrap-common",3066,84,28,1]),types.vector(["bootstrap2012/bootstrap-common",3068,84,30,7]),types.vector(["bootstrap2012/bootstrap-common",3061,84,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3061,84,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3069,84,31,1]),types.vector(["bootstrap2012/bootstrap-common",3071,84,33,1]),types.vector(["bootstrap2012/bootstrap-common",3073,84,35,1]),types.vector(["bootstrap2012/bootstrap-common",3068,84,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3068,84,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3069,84,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3089,85,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3093,85,10,1]),types.vector(["bootstrap2012/bootstrap-common",3095,85,12,1]),types.vector(["bootstrap2012/bootstrap-common",3097,85,14,11]),types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3093,85,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3098,85,15,1]),types.vector(["bootstrap2012/bootstrap-common",3100,85,17,5]),types.vector(["bootstrap2012/bootstrap-common",3106,85,23,1]),types.vector(["bootstrap2012/bootstrap-common",3097,85,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3097,85,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3098,85,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3092,85,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3111,85,28,4]),types.vector(["bootstrap2012/bootstrap-common",3116,85,33,15]),types.vector(["bootstrap2012/bootstrap-common",3110,85,27,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3110,85,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3111,85,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3117,85,34,3]),types.vector(["bootstrap2012/bootstrap-common",3121,85,38,7]),types.vector(["bootstrap2012/bootstrap-common",3129,85,46,1]),types.vector(["bootstrap2012/bootstrap-common",3116,85,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3116,85,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3122,85,39,1]),types.vector(["bootstrap2012/bootstrap-common",3124,85,41,1]),types.vector(["bootstrap2012/bootstrap-common",3126,85,43,1]),types.vector(["bootstrap2012/bootstrap-common",3121,85,38,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3121,85,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3122,85,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3144,86,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3148,86,10,1]),types.vector(["bootstrap2012/bootstrap-common",3150,86,12,1]),types.vector(["bootstrap2012/bootstrap-common",3152,86,14,12]),types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3148,86,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3153,86,15,1]),types.vector(["bootstrap2012/bootstrap-common",3155,86,17,6]),types.vector(["bootstrap2012/bootstrap-common",3162,86,24,1]),types.vector(["bootstrap2012/bootstrap-common",3152,86,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3152,86,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3153,86,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3147,86,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3167,86,29,4]),types.vector(["bootstrap2012/bootstrap-common",3172,86,34,15]),types.vector(["bootstrap2012/bootstrap-common",3166,86,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3166,86,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3167,86,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3173,86,35,3]),types.vector(["bootstrap2012/bootstrap-common",3177,86,39,1]),types.vector(["bootstrap2012/bootstrap-common",3179,86,41,7]),types.vector(["bootstrap2012/bootstrap-common",3172,86,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3172,86,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3180,86,42,1]),types.vector(["bootstrap2012/bootstrap-common",3182,86,44,1]),types.vector(["bootstrap2012/bootstrap-common",3184,86,46,1]),types.vector(["bootstrap2012/bootstrap-common",3179,86,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3179,86,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3180,86,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2860,79,12,9]),types.vector(["bootstrap2012/bootstrap-common",2870,79,22,3]),types.vector(["bootstrap2012/bootstrap-common",2874,79,26,5]),types.vector(["bootstrap2012/bootstrap-common",2859,79,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2859,79,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2860,79,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2894,80,12,5]),types.vector(["bootstrap2012/bootstrap-common",2900,80,18,13]),types.vector(["bootstrap2012/bootstrap-common",2893,80,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2893,80,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2894,80,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2901,80,19,1]),types.vector(["bootstrap2012/bootstrap-common",2903,80,21,3]),types.vector(["bootstrap2012/bootstrap-common",2907,80,25,5]),types.vector(["bootstrap2012/bootstrap-common",2900,80,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2900,80,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2901,80,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",2930,81,14,6]),types.vector(["bootstrap2012/bootstrap-common",2938,81,22,1]),types.vector(["bootstrap2012/bootstrap-common",2940,81,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",2944,81,28,15]),types.vector(["bootstrap2012/bootstrap-common",2960,81,44,1]),types.vector(["bootstrap2012/bootstrap-common",2962,81,46,1]),types.vector(["bootstrap2012/bootstrap-common",2964,81,48,5]),types.vector(["bootstrap2012/bootstrap-common",2970,81,54,6]),types.vector(["bootstrap2012/bootstrap-common",2943,81,27,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",2943,81,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",2944,81,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3215,90,15,4])},{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"rands":[{"$":"constant","value":types.symbol("cell")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("elt")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97]),types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},"rands":[{"$":"toplevel","depth":3,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3200,90,0,97])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("rest")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3314,94,15,5])},{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"rands":[{"$":"constant","value":types.symbol("queue")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"rands":[{"$":"toplevel","depth":3,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("first")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112]),types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},"rands":[{"$":"toplevel","depth":3,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3299,94,0,112])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("last")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3475,100,9,9])}],"body":{"$":"lam","name":types.symbol("new-queue"),"locs":[types.vector(["bootstrap2012/bootstrap-common",3475,100,9,9])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3489,101,3,10]),types.vector(["bootstrap2012/bootstrap-common",3500,101,14,8]),types.vector(["bootstrap2012/bootstrap-common",3509,101,23,8]),types.vector(["bootstrap2012/bootstrap-common",3488,101,2,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3488,101,2,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3489,101,3,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3501,101,15,3]),types.vector(["bootstrap2012/bootstrap-common",3505,101,19,2]),types.vector(["bootstrap2012/bootstrap-common",3500,101,14,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3500,101,14,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3501,101,15,3])},"rands":[{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3510,101,24,3]),types.vector(["bootstrap2012/bootstrap-common",3514,101,28,2]),types.vector(["bootstrap2012/bootstrap-common",3509,101,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3509,101,23,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3510,101,24,3])},"rands":[{"$":"constant","value":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3603,106,9,12])}],"body":{"$":"lam","name":types.symbol("queue-empty?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",3603,106,9,12]),types.vector(["bootstrap2012/bootstrap-common",3616,106,22,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3628,107,3,3]),types.vector(["bootstrap2012/bootstrap-common",3632,107,7,29]),types.vector(["bootstrap2012/bootstrap-common",3662,107,37,2]),types.vector(["bootstrap2012/bootstrap-common",3627,107,2,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3627,107,2,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3628,107,3,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3633,107,8,5]),types.vector(["bootstrap2012/bootstrap-common",3639,107,14,21]),types.vector(["bootstrap2012/bootstrap-common",3632,107,7,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3632,107,7,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3633,107,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3640,107,15,11]),types.vector(["bootstrap2012/bootstrap-common",3652,107,27,7]),types.vector(["bootstrap2012/bootstrap-common",3639,107,14,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3639,107,14,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3640,107,15,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3711,110,9,8])}],"body":{"$":"lam","name":types.symbol("enqueue!"),"locs":[types.vector(["bootstrap2012/bootstrap-common",3711,110,9,8]),types.vector(["bootstrap2012/bootstrap-common",3720,110,18,7]),types.vector(["bootstrap2012/bootstrap-common",3728,110,26,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3747,112,6,12]),types.vector(["bootstrap2012/bootstrap-common",3760,112,19,7]),types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3747,112,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3746,112,5,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3774,113,5,159]),types.vector(["bootstrap2012/bootstrap-common",3788,113,19,30]),types.vector(["bootstrap2012/bootstrap-common",3774,113,5,159])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3774,113,5,159])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",3774,113,5,159]),types.vector(["bootstrap2012/bootstrap-common",3781,113,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3845,115,10,8]),types.vector(["bootstrap2012/bootstrap-common",3854,115,19,21]),types.vector(["bootstrap2012/bootstrap-common",3876,115,41,6]),types.vector(["bootstrap2012/bootstrap-common",3844,115,9,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3844,115,9,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3845,115,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3855,115,20,11]),types.vector(["bootstrap2012/bootstrap-common",3867,115,32,7]),types.vector(["bootstrap2012/bootstrap-common",3854,115,19,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3854,115,19,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3855,115,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3894,116,10,8]),types.vector(["bootstrap2012/bootstrap-common",3903,116,19,20]),types.vector(["bootstrap2012/bootstrap-common",3924,116,40,6]),types.vector(["bootstrap2012/bootstrap-common",3893,116,9,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3893,116,9,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3894,116,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3904,116,20,10]),types.vector(["bootstrap2012/bootstrap-common",3915,116,31,7]),types.vector(["bootstrap2012/bootstrap-common",3903,116,19,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3903,116,19,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3904,116,20,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3789,113,20,9]),types.vector(["bootstrap2012/bootstrap-common",3799,113,30,9]),types.vector(["bootstrap2012/bootstrap-common",3809,113,40,8]),types.vector(["bootstrap2012/bootstrap-common",3788,113,19,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3788,113,19,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3789,113,20,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3800,113,31,3]),types.vector(["bootstrap2012/bootstrap-common",3804,113,35,3]),types.vector(["bootstrap2012/bootstrap-common",3799,113,30,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3799,113,30,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3800,113,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3810,113,41,3]),types.vector(["bootstrap2012/bootstrap-common",3814,113,45,2]),types.vector(["bootstrap2012/bootstrap-common",3809,113,40,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3809,113,40,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3810,113,41,3])},"rands":[{"$":"constant","value":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4]),types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3940,117,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3950,118,5,178]),types.vector(["bootstrap2012/bootstrap-common",3964,118,19,30]),types.vector(["bootstrap2012/bootstrap-common",3950,118,5,178])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3950,118,5,178])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",3950,118,5,178]),types.vector(["bootstrap2012/bootstrap-common",3957,118,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4021,120,10,8]),types.vector(["bootstrap2012/bootstrap-common",4030,120,19,40]),types.vector(["bootstrap2012/bootstrap-common",4071,120,60,6]),types.vector(["bootstrap2012/bootstrap-common",4020,120,9,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4020,120,9,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4021,120,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4031,120,20,9]),types.vector(["bootstrap2012/bootstrap-common",4041,120,30,28]),types.vector(["bootstrap2012/bootstrap-common",4030,120,19,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4030,120,19,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4031,120,20,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4042,120,31,5]),types.vector(["bootstrap2012/bootstrap-common",4048,120,37,20]),types.vector(["bootstrap2012/bootstrap-common",4041,120,30,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4041,120,30,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4042,120,31,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4049,120,38,10]),types.vector(["bootstrap2012/bootstrap-common",4060,120,49,7]),types.vector(["bootstrap2012/bootstrap-common",4048,120,37,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4048,120,37,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4049,120,38,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4089,121,10,8]),types.vector(["bootstrap2012/bootstrap-common",4098,121,19,20]),types.vector(["bootstrap2012/bootstrap-common",4119,121,40,6]),types.vector(["bootstrap2012/bootstrap-common",4088,121,9,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4088,121,9,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4089,121,10,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4099,121,20,10]),types.vector(["bootstrap2012/bootstrap-common",4110,121,31,7]),types.vector(["bootstrap2012/bootstrap-common",4098,121,19,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4098,121,19,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4099,121,20,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3965,118,20,9]),types.vector(["bootstrap2012/bootstrap-common",3975,118,30,9]),types.vector(["bootstrap2012/bootstrap-common",3985,118,40,8]),types.vector(["bootstrap2012/bootstrap-common",3964,118,19,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3964,118,19,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3965,118,20,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3976,118,31,3]),types.vector(["bootstrap2012/bootstrap-common",3980,118,35,3]),types.vector(["bootstrap2012/bootstrap-common",3975,118,30,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3975,118,30,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3976,118,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3986,118,41,3]),types.vector(["bootstrap2012/bootstrap-common",3990,118,45,2]),types.vector(["bootstrap2012/bootstrap-common",3985,118,40,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3985,118,40,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3986,118,41,3])},"rands":[{"$":"constant","value":false}]}}}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395]),types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395]),types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",3735,111,2,395])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4168,124,9,8])}],"body":{"$":"lam","name":types.symbol("dequeue!"),"locs":[types.vector(["bootstrap2012/bootstrap-common",4168,124,9,8]),types.vector(["bootstrap2012/bootstrap-common",4177,124,18,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4188,125,2,402]),types.vector(["bootstrap2012/bootstrap-common",4202,125,16,48]),types.vector(["bootstrap2012/bootstrap-common",4188,125,2,402])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4188,125,2,402])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",4188,125,2,402]),types.vector(["bootstrap2012/bootstrap-common",4195,125,9,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4278,127,14,3]),types.vector(["bootstrap2012/bootstrap-common",4282,127,18,49]),types.vector(["bootstrap2012/bootstrap-common",4332,127,68,2]),types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4278,127,14,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4283,127,19,5]),types.vector(["bootstrap2012/bootstrap-common",4289,127,25,41]),types.vector(["bootstrap2012/bootstrap-common",4282,127,18,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4282,127,18,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4283,127,19,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4290,127,26,9]),types.vector(["bootstrap2012/bootstrap-common",4300,127,36,29]),types.vector(["bootstrap2012/bootstrap-common",4289,127,25,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4289,127,25,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4290,127,26,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4301,127,37,5]),types.vector(["bootstrap2012/bootstrap-common",4307,127,43,21]),types.vector(["bootstrap2012/bootstrap-common",4300,127,36,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4300,127,36,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4301,127,37,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4308,127,44,11]),types.vector(["bootstrap2012/bootstrap-common",4320,127,56,7]),types.vector(["bootstrap2012/bootstrap-common",4307,127,43,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4307,127,43,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4308,127,44,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4277,127,13,58])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4373,129,16,8]),types.vector(["bootstrap2012/bootstrap-common",4382,129,25,21]),types.vector(["bootstrap2012/bootstrap-common",4404,129,47,2]),types.vector(["bootstrap2012/bootstrap-common",4372,129,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4372,129,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4373,129,16,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4383,129,26,11]),types.vector(["bootstrap2012/bootstrap-common",4395,129,38,7]),types.vector(["bootstrap2012/bootstrap-common",4382,129,25,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4382,129,25,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4383,129,26,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4424,130,16,8]),types.vector(["bootstrap2012/bootstrap-common",4433,130,25,20]),types.vector(["bootstrap2012/bootstrap-common",4454,130,46,2]),types.vector(["bootstrap2012/bootstrap-common",4423,130,15,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4423,130,15,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4424,130,16,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4434,130,26,10]),types.vector(["bootstrap2012/bootstrap-common",4445,130,37,7]),types.vector(["bootstrap2012/bootstrap-common",4433,130,25,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4433,130,25,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4434,130,26,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}}]},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4]),types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4473,131,13,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4492,132,14,8]),types.vector(["bootstrap2012/bootstrap-common",4501,132,23,21]),types.vector(["bootstrap2012/bootstrap-common",4523,132,45,49]),types.vector(["bootstrap2012/bootstrap-common",4491,132,13,82])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4491,132,13,82])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4492,132,14,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4502,132,24,11]),types.vector(["bootstrap2012/bootstrap-common",4514,132,36,7]),types.vector(["bootstrap2012/bootstrap-common",4501,132,23,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4501,132,23,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4502,132,24,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4524,132,46,5]),types.vector(["bootstrap2012/bootstrap-common",4530,132,52,41]),types.vector(["bootstrap2012/bootstrap-common",4523,132,45,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4523,132,45,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4524,132,46,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4531,132,53,9]),types.vector(["bootstrap2012/bootstrap-common",4541,132,63,29]),types.vector(["bootstrap2012/bootstrap-common",4530,132,52,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4530,132,52,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4531,132,53,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4542,132,64,5]),types.vector(["bootstrap2012/bootstrap-common",4548,132,70,21]),types.vector(["bootstrap2012/bootstrap-common",4541,132,63,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4541,132,63,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4542,132,64,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4549,132,71,11]),types.vector(["bootstrap2012/bootstrap-common",4561,132,83,7]),types.vector(["bootstrap2012/bootstrap-common",4548,132,70,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4548,132,70,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4549,132,71,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305]),types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305]),types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4270,127,6,305])}]}}}}},{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4203,125,17,5]),types.vector(["bootstrap2012/bootstrap-common",4209,125,23,40]),types.vector(["bootstrap2012/bootstrap-common",4202,125,16,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4202,125,16,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4203,125,17,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4210,125,24,8]),types.vector(["bootstrap2012/bootstrap-common",4219,125,33,29]),types.vector(["bootstrap2012/bootstrap-common",4209,125,23,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4209,125,23,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4210,125,24,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4220,125,34,5]),types.vector(["bootstrap2012/bootstrap-common",4226,125,40,21]),types.vector(["bootstrap2012/bootstrap-common",4219,125,33,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4219,125,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4220,125,34,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4227,125,41,11]),types.vector(["bootstrap2012/bootstrap-common",4239,125,53,7]),types.vector(["bootstrap2012/bootstrap-common",4226,125,40,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4226,125,40,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4227,125,41,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4602,135,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/bootstrap-common",4602,135,9,22]),types.vector(["bootstrap2012/bootstrap-common",4625,135,32,6]),types.vector(["bootstrap2012/bootstrap-common",4632,135,39,5]),types.vector(["bootstrap2012/bootstrap-common",4638,135,45,6]),types.vector(["bootstrap2012/bootstrap-common",4645,135,52,7]),types.vector(["bootstrap2012/bootstrap-common",4653,135,60,7]),types.vector(["bootstrap2012/bootstrap-common",4661,135,68,11]),types.vector(["bootstrap2012/bootstrap-common",4673,135,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4686,136,2,958]),types.vector(["bootstrap2012/bootstrap-common",4699,136,15,11]),types.vector(["bootstrap2012/bootstrap-common",4726,137,14,11]),types.vector(["bootstrap2012/bootstrap-common",4753,138,14,9]),types.vector(["bootstrap2012/bootstrap-common",4686,136,2,958])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4686,136,2,958])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",4686,136,2,958]),types.vector(["bootstrap2012/bootstrap-common",4693,136,9,5]),types.vector(["bootstrap2012/bootstrap-common",4721,137,9,4]),types.vector(["bootstrap2012/bootstrap-common",4748,138,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4783,140,7,8]),types.vector(["bootstrap2012/bootstrap-common",4792,140,16,5]),types.vector(["bootstrap2012/bootstrap-common",4799,140,23,46]),types.vector(["bootstrap2012/bootstrap-common",4782,140,6,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4782,140,6,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4783,140,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4800,140,24,15]),types.vector(["bootstrap2012/bootstrap-common",4816,140,40,7]),types.vector(["bootstrap2012/bootstrap-common",4824,140,48,7]),types.vector(["bootstrap2012/bootstrap-common",4832,140,56,5]),types.vector(["bootstrap2012/bootstrap-common",4838,140,62,6]),types.vector(["bootstrap2012/bootstrap-common",4799,140,23,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4799,140,23,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4800,140,24,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/bootstrap-common",4863,141,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,7,8,9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4920,143,25,3]),types.vector(["bootstrap2012/bootstrap-common",4924,143,29,20]),types.vector(["bootstrap2012/bootstrap-common",4919,143,24,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4919,143,24,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4920,143,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4925,143,30,12]),types.vector(["bootstrap2012/bootstrap-common",4938,143,43,5]),types.vector(["bootstrap2012/bootstrap-common",4924,143,29,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4924,143,29,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4925,143,30,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4966,144,20,637]),types.vector(["bootstrap2012/bootstrap-common",4976,144,30,16]),types.vector(["bootstrap2012/bootstrap-common",4966,144,20,637])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4966,144,20,637])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",4966,144,20,637]),types.vector(["bootstrap2012/bootstrap-common",4973,144,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5055,146,31,3]),types.vector(["bootstrap2012/bootstrap-common",5059,146,35,21]),types.vector(["bootstrap2012/bootstrap-common",5054,146,30,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5054,146,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5055,146,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5060,146,36,8]),types.vector(["bootstrap2012/bootstrap-common",5069,146,45,4]),types.vector(["bootstrap2012/bootstrap-common",5074,146,50,2]),types.vector(["bootstrap2012/bootstrap-common",5077,146,53,2]),types.vector(["bootstrap2012/bootstrap-common",5059,146,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5059,146,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5060,146,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5144,148,29,9]),types.vector(["bootstrap2012/bootstrap-common",5154,148,39,4]),types.vector(["bootstrap2012/bootstrap-common",5159,148,44,2]),types.vector(["bootstrap2012/bootstrap-common",5162,148,47,2]),types.vector(["bootstrap2012/bootstrap-common",5143,148,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5143,148,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5144,148,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5195,149,29,8]),types.vector(["bootstrap2012/bootstrap-common",5204,149,38,4]),types.vector(["bootstrap2012/bootstrap-common",5209,149,43,22]),types.vector(["bootstrap2012/bootstrap-common",5194,149,28,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5194,149,28,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5195,149,29,8])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5210,149,44,4]),types.vector(["bootstrap2012/bootstrap-common",5215,149,49,2]),types.vector(["bootstrap2012/bootstrap-common",5218,149,52,12]),types.vector(["bootstrap2012/bootstrap-common",5209,149,43,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5209,149,43,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5210,149,44,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5219,149,53,5]),types.vector(["bootstrap2012/bootstrap-common",5225,149,59,4]),types.vector(["bootstrap2012/bootstrap-common",5218,149,52,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5218,149,52,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5219,149,53,5])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5262,150,29,8]),types.vector(["bootstrap2012/bootstrap-common",5271,150,38,31]),types.vector(["bootstrap2012/bootstrap-common",5341,151,38,226]),types.vector(["bootstrap2012/bootstrap-common",5261,150,28,307])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5261,150,28,307])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5262,150,29,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5272,150,39,6]),types.vector(["bootstrap2012/bootstrap-common",5280,150,47,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5284,150,51,8]),types.vector(["bootstrap2012/bootstrap-common",5293,150,60,5]),types.vector(["bootstrap2012/bootstrap-common",5299,150,66,1]),types.vector(["bootstrap2012/bootstrap-common",5283,150,50,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5283,150,50,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5284,150,51,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5342,151,39,6]),types.vector(["bootstrap2012/bootstrap-common",5349,151,46,123]),types.vector(["bootstrap2012/bootstrap-common",5519,153,46,47]),types.vector(["bootstrap2012/bootstrap-common",5341,151,38,226])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5341,151,38,226])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5342,151,39,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5350,151,47,6]),types.vector(["bootstrap2012/bootstrap-common",5358,151,55,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5413,152,49,11]),types.vector(["bootstrap2012/bootstrap-common",5425,152,61,23]),types.vector(["bootstrap2012/bootstrap-common",5449,152,85,11]),types.vector(["bootstrap2012/bootstrap-common",5461,152,97,9]),types.vector(["bootstrap2012/bootstrap-common",5412,152,48,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5412,152,48,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5413,152,49,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5426,152,62,10]),types.vector(["bootstrap2012/bootstrap-common",5437,152,73,6]),types.vector(["bootstrap2012/bootstrap-common",5444,152,80,3]),types.vector(["bootstrap2012/bootstrap-common",5425,152,61,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5425,152,61,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5426,152,62,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5520,153,47,22]),types.vector(["bootstrap2012/bootstrap-common",5543,153,70,6]),types.vector(["bootstrap2012/bootstrap-common",5550,153,77,2]),types.vector(["bootstrap2012/bootstrap-common",5553,153,80,5]),types.vector(["bootstrap2012/bootstrap-common",5559,153,86,6]),types.vector(["bootstrap2012/bootstrap-common",5519,153,46,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5519,153,46,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5520,153,47,22])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5048,146,24,522]),types.vector(["bootstrap2012/bootstrap-common",5048,146,24,522])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5048,146,24,522])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5048,146,24,522])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5596,154,25,4]),types.vector(["bootstrap2012/bootstrap-common",5595,154,24,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5595,154,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4977,144,31,8]),types.vector(["bootstrap2012/bootstrap-common",4986,144,40,5]),types.vector(["bootstrap2012/bootstrap-common",4976,144,30,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4976,144,30,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4977,144,31,8])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4913,143,18,691]),types.vector(["bootstrap2012/bootstrap-common",4913,143,18,691])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4913,143,18,691])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4913,143,18,691])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5617,155,9,4]),types.vector(["bootstrap2012/bootstrap-common",5616,155,8,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5616,155,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5631,156,7,5]),types.vector(["bootstrap2012/bootstrap-common",5637,156,13,4]),types.vector(["bootstrap2012/bootstrap-common",5630,156,6,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5630,156,6,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5631,156,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4700,136,16,9]),types.vector(["bootstrap2012/bootstrap-common",4699,136,15,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4699,136,15,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4700,136,16,9])},"rands":[]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4727,137,15,9]),types.vector(["bootstrap2012/bootstrap-common",4726,137,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4726,137,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4727,137,15,9])},"rands":[]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",4754,138,15,3]),types.vector(["bootstrap2012/bootstrap-common",4758,138,19,3]),types.vector(["bootstrap2012/bootstrap-common",4753,138,14,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",4753,138,14,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",4754,138,15,3])},"rands":[{"$":"constant","value":types.EMPTY}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5656,158,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/bootstrap-common",5656,158,9,16]),types.vector(["bootstrap2012/bootstrap-common",5673,158,26,3]),types.vector(["bootstrap2012/bootstrap-common",5677,158,30,7]),types.vector(["bootstrap2012/bootstrap-common",5685,158,38,7]),types.vector(["bootstrap2012/bootstrap-common",5693,158,46,12]),types.vector(["bootstrap2012/bootstrap-common",5706,158,59,17]),types.vector(["bootstrap2012/bootstrap-common",5724,158,77,9]),types.vector(["bootstrap2012/bootstrap-common",5734,158,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5754,159,9,42]),types.vector(["bootstrap2012/bootstrap-common",5757,159,12,38]),types.vector(["bootstrap2012/bootstrap-common",5754,159,9,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5754,159,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5754,159,9,42]),types.vector(["bootstrap2012/bootstrap-common",5755,159,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5806,160,9,25]),types.vector(["bootstrap2012/bootstrap-common",5813,160,16,17]),types.vector(["bootstrap2012/bootstrap-common",5806,160,9,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5806,160,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5806,160,9,25]),types.vector(["bootstrap2012/bootstrap-common",5807,160,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5841,161,9,27]),types.vector(["bootstrap2012/bootstrap-common",5849,161,17,18]),types.vector(["bootstrap2012/bootstrap-common",5841,161,9,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5841,161,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5841,161,9,27]),types.vector(["bootstrap2012/bootstrap-common",5842,161,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5878,162,9,142]),types.vector(["bootstrap2012/bootstrap-common",5881,162,12,138]),types.vector(["bootstrap2012/bootstrap-common",5878,162,9,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5878,162,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",5878,162,9,142]),types.vector(["bootstrap2012/bootstrap-common",5879,162,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6030,165,9,34]),types.vector(["bootstrap2012/bootstrap-common",6033,165,12,30]),types.vector(["bootstrap2012/bootstrap-common",6030,165,9,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6030,165,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",6030,165,9,34]),types.vector(["bootstrap2012/bootstrap-common",6031,165,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6090,167,13,3]),types.vector(["bootstrap2012/bootstrap-common",6094,167,17,13]),types.vector(["bootstrap2012/bootstrap-common",6089,167,12,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6089,167,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6090,167,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6095,167,18,7]),types.vector(["bootstrap2012/bootstrap-common",6103,167,26,1]),types.vector(["bootstrap2012/bootstrap-common",6105,167,28,1]),types.vector(["bootstrap2012/bootstrap-common",6094,167,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6094,167,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6095,167,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6118,168,9,8]),types.vector(["bootstrap2012/bootstrap-common",6127,168,18,36]),types.vector(["bootstrap2012/bootstrap-common",6182,169,18,67]),types.vector(["bootstrap2012/bootstrap-common",6117,168,8,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6117,168,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6118,168,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",6128,168,19,6]),types.vector(["bootstrap2012/bootstrap-common",6136,168,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6142,168,33,11]),types.vector(["bootstrap2012/bootstrap-common",6154,168,45,1]),types.vector(["bootstrap2012/bootstrap-common",6156,168,47,3]),types.vector(["bootstrap2012/bootstrap-common",6160,168,51,1]),types.vector(["bootstrap2012/bootstrap-common",6141,168,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6141,168,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6142,168,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6183,169,19,22]),types.vector(["bootstrap2012/bootstrap-common",6206,169,42,1]),types.vector(["bootstrap2012/bootstrap-common",6208,169,44,5]),types.vector(["bootstrap2012/bootstrap-common",6214,169,50,6]),types.vector(["bootstrap2012/bootstrap-common",6221,169,57,7]),types.vector(["bootstrap2012/bootstrap-common",6229,169,65,7]),types.vector(["bootstrap2012/bootstrap-common",6237,169,73,1]),types.vector(["bootstrap2012/bootstrap-common",6239,169,75,9]),types.vector(["bootstrap2012/bootstrap-common",6182,169,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6182,169,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6183,169,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6083,167,6,168]),types.vector(["bootstrap2012/bootstrap-common",6083,167,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6083,167,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6083,167,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6259,170,7,18]),types.vector(["bootstrap2012/bootstrap-common",6278,170,26,16]),types.vector(["bootstrap2012/bootstrap-common",6295,170,43,5]),types.vector(["bootstrap2012/bootstrap-common",6301,170,49,6]),types.vector(["bootstrap2012/bootstrap-common",6258,170,6,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6258,170,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6259,170,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6279,170,27,12]),types.vector(["bootstrap2012/bootstrap-common",6292,170,40,1]),types.vector(["bootstrap2012/bootstrap-common",6278,170,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6278,170,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6279,170,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6034,165,13,10]),types.vector(["bootstrap2012/bootstrap-common",6045,165,24,17]),types.vector(["bootstrap2012/bootstrap-common",6033,165,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6033,165,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6034,165,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12]),types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5882,162,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5885,162,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5916,163,17,10]),types.vector(["bootstrap2012/bootstrap-common",5927,163,28,12]),types.vector(["bootstrap2012/bootstrap-common",5915,163,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5915,163,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5916,163,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5958,164,17,10]),types.vector(["bootstrap2012/bootstrap-common",5969,164,28,1]),types.vector(["bootstrap2012/bootstrap-common",5971,164,30,46]),types.vector(["bootstrap2012/bootstrap-common",5957,164,16,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5957,164,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5958,164,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5972,164,31,15]),types.vector(["bootstrap2012/bootstrap-common",5988,164,47,7]),types.vector(["bootstrap2012/bootstrap-common",5996,164,55,7]),types.vector(["bootstrap2012/bootstrap-common",6004,164,63,5]),types.vector(["bootstrap2012/bootstrap-common",6010,164,69,6]),types.vector(["bootstrap2012/bootstrap-common",5971,164,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5971,164,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5972,164,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5850,161,18,12]),types.vector(["bootstrap2012/bootstrap-common",5863,161,31,3]),types.vector(["bootstrap2012/bootstrap-common",5849,161,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5849,161,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5850,161,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5814,160,17,11]),types.vector(["bootstrap2012/bootstrap-common",5826,160,29,3]),types.vector(["bootstrap2012/bootstrap-common",5813,160,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5813,160,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5814,160,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5758,159,13,12]),types.vector(["bootstrap2012/bootstrap-common",5771,159,26,23]),types.vector(["bootstrap2012/bootstrap-common",5757,159,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5757,159,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5758,159,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",5772,159,27,17]),types.vector(["bootstrap2012/bootstrap-common",5790,159,45,3]),types.vector(["bootstrap2012/bootstrap-common",5771,159,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",5771,159,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",5772,159,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6322,172,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/bootstrap-common",6322,172,9,23]),types.vector(["bootstrap2012/bootstrap-common",6346,172,33,3]),types.vector(["bootstrap2012/bootstrap-common",6350,172,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6364,173,3,16]),types.vector(["bootstrap2012/bootstrap-common",6381,173,20,3]),types.vector(["bootstrap2012/bootstrap-common",6385,173,24,1]),types.vector(["bootstrap2012/bootstrap-common",6387,173,26,1]),types.vector(["bootstrap2012/bootstrap-common",6389,173,28,2]),types.vector(["bootstrap2012/bootstrap-common",6392,173,31,20]),types.vector(["bootstrap2012/bootstrap-common",6413,173,52,9]),types.vector(["bootstrap2012/bootstrap-common",6423,173,62,1]),types.vector(["bootstrap2012/bootstrap-common",6363,173,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6363,173,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6364,173,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6393,173,32,10]),types.vector(["bootstrap2012/bootstrap-common",6404,173,43,1]),types.vector(["bootstrap2012/bootstrap-common",6406,173,45,1]),types.vector(["bootstrap2012/bootstrap-common",6408,173,47,1]),types.vector(["bootstrap2012/bootstrap-common",6410,173,49,1]),types.vector(["bootstrap2012/bootstrap-common",6392,173,31,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6392,173,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6393,173,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6436,174,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/bootstrap-common",6436,174,9,24]),types.vector(["bootstrap2012/bootstrap-common",6461,174,34,3]),types.vector(["bootstrap2012/bootstrap-common",6465,174,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6478,175,2,442]),types.vector(["bootstrap2012/bootstrap-common",6490,175,14,20]),types.vector(["bootstrap2012/bootstrap-common",6533,176,21,2]),types.vector(["bootstrap2012/bootstrap-common",6554,177,17,1]),types.vector(["bootstrap2012/bootstrap-common",6570,178,13,23]),types.vector(["bootstrap2012/bootstrap-common",6608,179,13,24]),types.vector(["bootstrap2012/bootstrap-common",6478,175,2,442])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6478,175,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",6478,175,2,442]),types.vector(["bootstrap2012/bootstrap-common",6485,175,9,4]),types.vector(["bootstrap2012/bootstrap-common",6521,176,9,11]),types.vector(["bootstrap2012/bootstrap-common",6546,177,9,7]),types.vector(["bootstrap2012/bootstrap-common",6566,178,9,3]),types.vector(["bootstrap2012/bootstrap-common",6604,179,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6640,180,5,16]),types.vector(["bootstrap2012/bootstrap-common",6663,181,5,207]),types.vector(["bootstrap2012/bootstrap-common",6876,186,5,3]),types.vector(["bootstrap2012/bootstrap-common",6880,186,9,3]),types.vector(["bootstrap2012/bootstrap-common",6884,186,13,11]),types.vector(["bootstrap2012/bootstrap-common",6896,186,25,4]),types.vector(["bootstrap2012/bootstrap-common",6901,186,30,9]),types.vector(["bootstrap2012/bootstrap-common",6911,186,40,7]),types.vector(["bootstrap2012/bootstrap-common",6639,180,4,280])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6639,180,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6640,180,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6664,181,6,16]),types.vector(["bootstrap2012/bootstrap-common",6687,182,6,135]),types.vector(["bootstrap2012/bootstrap-common",6829,185,6,1]),types.vector(["bootstrap2012/bootstrap-common",6831,185,8,3]),types.vector(["bootstrap2012/bootstrap-common",6835,185,12,11]),types.vector(["bootstrap2012/bootstrap-common",6847,185,24,4]),types.vector(["bootstrap2012/bootstrap-common",6852,185,29,9]),types.vector(["bootstrap2012/bootstrap-common",6862,185,39,7]),types.vector(["bootstrap2012/bootstrap-common",6663,181,5,207])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6663,181,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6664,181,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6688,182,7,16]),types.vector(["bootstrap2012/bootstrap-common",6712,183,7,61]),types.vector(["bootstrap2012/bootstrap-common",6781,184,7,3]),types.vector(["bootstrap2012/bootstrap-common",6785,184,11,1]),types.vector(["bootstrap2012/bootstrap-common",6787,184,13,11]),types.vector(["bootstrap2012/bootstrap-common",6799,184,25,4]),types.vector(["bootstrap2012/bootstrap-common",6804,184,30,9]),types.vector(["bootstrap2012/bootstrap-common",6814,184,40,7]),types.vector(["bootstrap2012/bootstrap-common",6687,182,6,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6687,182,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6688,182,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6713,183,8,16]),types.vector(["bootstrap2012/bootstrap-common",6730,183,25,3]),types.vector(["bootstrap2012/bootstrap-common",6734,183,29,1]),types.vector(["bootstrap2012/bootstrap-common",6736,183,31,1]),types.vector(["bootstrap2012/bootstrap-common",6738,183,33,11]),types.vector(["bootstrap2012/bootstrap-common",6750,183,45,4]),types.vector(["bootstrap2012/bootstrap-common",6755,183,50,9]),types.vector(["bootstrap2012/bootstrap-common",6765,183,60,7]),types.vector(["bootstrap2012/bootstrap-common",6712,183,7,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6712,183,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6713,183,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6491,175,15,10]),types.vector(["bootstrap2012/bootstrap-common",6502,175,26,1]),types.vector(["bootstrap2012/bootstrap-common",6504,175,28,1]),types.vector(["bootstrap2012/bootstrap-common",6506,175,30,1]),types.vector(["bootstrap2012/bootstrap-common",6508,175,32,1]),types.vector(["bootstrap2012/bootstrap-common",6490,175,14,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6490,175,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6491,175,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6571,178,14,1]),types.vector(["bootstrap2012/bootstrap-common",6573,178,16,17]),types.vector(["bootstrap2012/bootstrap-common",6591,178,34,1]),types.vector(["bootstrap2012/bootstrap-common",6570,178,13,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6570,178,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6571,178,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6574,178,17,11]),types.vector(["bootstrap2012/bootstrap-common",6586,178,29,3]),types.vector(["bootstrap2012/bootstrap-common",6573,178,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6573,178,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6574,178,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6609,179,14,1]),types.vector(["bootstrap2012/bootstrap-common",6611,179,16,18]),types.vector(["bootstrap2012/bootstrap-common",6630,179,35,1]),types.vector(["bootstrap2012/bootstrap-common",6608,179,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6608,179,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6609,179,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",6612,179,17,12]),types.vector(["bootstrap2012/bootstrap-common",6625,179,30,3]),types.vector(["bootstrap2012/bootstrap-common",6611,179,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",6611,179,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",6612,179,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7089,191,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/bootstrap-common",7089,191,9,13]),types.vector(["bootstrap2012/bootstrap-common",7103,191,23,3]),types.vector(["bootstrap2012/bootstrap-common",7107,191,27,12]),types.vector(["bootstrap2012/bootstrap-common",7120,191,40,17]),types.vector(["bootstrap2012/bootstrap-common",7138,191,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7151,192,2,299]),types.vector(["bootstrap2012/bootstrap-common",7162,192,13,25]),types.vector(["bootstrap2012/bootstrap-common",7202,193,13,30]),types.vector(["bootstrap2012/bootstrap-common",7151,192,2,299])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7151,192,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",7151,192,2,299]),types.vector(["bootstrap2012/bootstrap-common",7158,192,9,3]),types.vector(["bootstrap2012/bootstrap-common",7198,193,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7240,194,5,18]),types.vector(["bootstrap2012/bootstrap-common",7264,195,5,137]),types.vector(["bootstrap2012/bootstrap-common",7407,200,5,17]),types.vector(["bootstrap2012/bootstrap-common",7430,201,5,18]),types.vector(["bootstrap2012/bootstrap-common",7239,194,4,210])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7239,194,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7240,194,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7265,195,6,3]),types.vector(["bootstrap2012/bootstrap-common",7269,195,10,97]),types.vector(["bootstrap2012/bootstrap-common",7377,199,10,23]),types.vector(["bootstrap2012/bootstrap-common",7264,195,5,137])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7264,195,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7265,195,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",7270,195,11,6]),types.vector(["bootstrap2012/bootstrap-common",7278,195,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7294,196,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7298,196,17,11]),types.vector(["bootstrap2012/bootstrap-common",7310,196,29,1]),types.vector(["bootstrap2012/bootstrap-common",7312,196,31,3]),types.vector(["bootstrap2012/bootstrap-common",7316,196,35,9]),types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7298,196,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7297,196,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7378,199,11,17]),types.vector(["bootstrap2012/bootstrap-common",7396,199,29,3]),types.vector(["bootstrap2012/bootstrap-common",7377,199,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7377,199,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7378,199,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7408,200,6,11]),types.vector(["bootstrap2012/bootstrap-common",7420,200,18,3]),types.vector(["bootstrap2012/bootstrap-common",7407,200,5,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7407,200,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7408,200,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7431,201,6,12]),types.vector(["bootstrap2012/bootstrap-common",7444,201,19,3]),types.vector(["bootstrap2012/bootstrap-common",7430,201,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7430,201,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7431,201,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7163,192,14,10]),types.vector(["bootstrap2012/bootstrap-common",7174,192,25,12]),types.vector(["bootstrap2012/bootstrap-common",7162,192,13,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7162,192,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7163,192,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7203,193,14,10]),types.vector(["bootstrap2012/bootstrap-common",7214,193,25,17]),types.vector(["bootstrap2012/bootstrap-common",7202,193,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7202,193,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7203,193,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7573,204,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/bootstrap-common",7573,204,9,12]),types.vector(["bootstrap2012/bootstrap-common",7586,204,22,3]),types.vector(["bootstrap2012/bootstrap-common",7590,204,26,12]),types.vector(["bootstrap2012/bootstrap-common",7603,204,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7617,205,3,13]),types.vector(["bootstrap2012/bootstrap-common",7631,205,17,3]),types.vector(["bootstrap2012/bootstrap-common",7635,205,21,12]),types.vector(["bootstrap2012/bootstrap-common",7648,205,34,20]),types.vector(["bootstrap2012/bootstrap-common",7669,205,55,9]),types.vector(["bootstrap2012/bootstrap-common",7616,205,2,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7616,205,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7617,205,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7649,205,35,10]),types.vector(["bootstrap2012/bootstrap-common",7660,205,46,1]),types.vector(["bootstrap2012/bootstrap-common",7662,205,48,1]),types.vector(["bootstrap2012/bootstrap-common",7664,205,50,1]),types.vector(["bootstrap2012/bootstrap-common",7666,205,52,1]),types.vector(["bootstrap2012/bootstrap-common",7648,205,34,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7648,205,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7649,205,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7816,209,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/bootstrap-common",7816,209,9,11]),types.vector(["bootstrap2012/bootstrap-common",7828,209,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7836,210,3,24]),types.vector(["bootstrap2012/bootstrap-common",7861,210,28,16]),types.vector(["bootstrap2012/bootstrap-common",7878,210,45,2]),types.vector(["bootstrap2012/bootstrap-common",7835,210,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7835,210,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7836,210,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7862,210,29,10]),types.vector(["bootstrap2012/bootstrap-common",7873,210,40,3]),types.vector(["bootstrap2012/bootstrap-common",7861,210,28,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7861,210,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7862,210,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7935,213,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/bootstrap-common",7935,213,9,12]),types.vector(["bootstrap2012/bootstrap-common",7948,213,22,3]),types.vector(["bootstrap2012/bootstrap-common",7952,213,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7961,214,3,10]),types.vector(["bootstrap2012/bootstrap-common",7972,214,14,3]),types.vector(["bootstrap2012/bootstrap-common",7976,214,18,27]),types.vector(["bootstrap2012/bootstrap-common",8004,214,46,17]),types.vector(["bootstrap2012/bootstrap-common",7960,214,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7960,214,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7961,214,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",7977,214,19,13]),types.vector(["bootstrap2012/bootstrap-common",7991,214,33,4]),types.vector(["bootstrap2012/bootstrap-common",7996,214,38,6]),types.vector(["bootstrap2012/bootstrap-common",7976,214,18,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",7976,214,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",7977,214,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8005,214,47,11]),types.vector(["bootstrap2012/bootstrap-common",8017,214,59,3]),types.vector(["bootstrap2012/bootstrap-common",8004,214,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8004,214,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8005,214,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8118,221,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8118,221,9,15]),types.vector(["bootstrap2012/bootstrap-common",8134,221,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1]),types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8140,222,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8143,222,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8274,226,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8274,226,9,14]),types.vector(["bootstrap2012/bootstrap-common",8289,226,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8295,227,3,13]),types.vector(["bootstrap2012/bootstrap-common",8309,227,17,19]),types.vector(["bootstrap2012/bootstrap-common",8294,227,2,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8294,227,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8295,227,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8310,227,18,15]),types.vector(["bootstrap2012/bootstrap-common",8326,227,34,1]),types.vector(["bootstrap2012/bootstrap-common",8309,227,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8309,227,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8310,227,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8419,233,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8419,233,9,13]),types.vector(["bootstrap2012/bootstrap-common",8433,233,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8439,234,3,4]),types.vector(["bootstrap2012/bootstrap-common",8444,234,8,1]),types.vector(["bootstrap2012/bootstrap-common",8446,234,10,2]),types.vector(["bootstrap2012/bootstrap-common",8449,234,13,6]),types.vector(["bootstrap2012/bootstrap-common",8438,234,2,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8438,234,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8439,234,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8544,238,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8544,238,9,13]),types.vector(["bootstrap2012/bootstrap-common",8558,238,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8564,239,3,13]),types.vector(["bootstrap2012/bootstrap-common",8578,239,17,18]),types.vector(["bootstrap2012/bootstrap-common",8563,239,2,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8563,239,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8564,239,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8579,239,18,14]),types.vector(["bootstrap2012/bootstrap-common",8594,239,33,1]),types.vector(["bootstrap2012/bootstrap-common",8578,239,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8578,239,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8579,239,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8765,245,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/bootstrap-common",8765,245,9,10]),types.vector(["bootstrap2012/bootstrap-common",8776,245,20,10]),types.vector(["bootstrap2012/bootstrap-common",8787,245,31,1]),types.vector(["bootstrap2012/bootstrap-common",8789,245,33,1]),types.vector(["bootstrap2012/bootstrap-common",8791,245,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8806,246,3,10]),types.vector(["bootstrap2012/bootstrap-common",8817,246,14,10]),types.vector(["bootstrap2012/bootstrap-common",8828,246,25,1]),types.vector(["bootstrap2012/bootstrap-common",8830,246,27,7]),types.vector(["bootstrap2012/bootstrap-common",8838,246,35,10]),types.vector(["bootstrap2012/bootstrap-common",8805,246,2,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8805,246,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8806,246,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",8831,246,28,1]),types.vector(["bootstrap2012/bootstrap-common",8833,246,30,1]),types.vector(["bootstrap2012/bootstrap-common",8835,246,32,1]),types.vector(["bootstrap2012/bootstrap-common",8830,246,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",8830,246,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",8831,246,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9018,251,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9018,251,9,9]),types.vector(["bootstrap2012/bootstrap-common",9028,251,19,10]),types.vector(["bootstrap2012/bootstrap-common",9039,251,30,1]),types.vector(["bootstrap2012/bootstrap-common",9041,251,32,1]),types.vector(["bootstrap2012/bootstrap-common",9043,251,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9058,252,3,11]),types.vector(["bootstrap2012/bootstrap-common",9070,252,15,10]),types.vector(["bootstrap2012/bootstrap-common",9081,252,26,1]),types.vector(["bootstrap2012/bootstrap-common",9083,252,28,31]),types.vector(["bootstrap2012/bootstrap-common",9115,252,60,10]),types.vector(["bootstrap2012/bootstrap-common",9057,252,2,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9057,252,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9058,252,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9084,252,29,1]),types.vector(["bootstrap2012/bootstrap-common",9086,252,31,25]),types.vector(["bootstrap2012/bootstrap-common",9112,252,57,1]),types.vector(["bootstrap2012/bootstrap-common",9083,252,28,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9083,252,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9084,252,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9087,252,32,12]),types.vector(["bootstrap2012/bootstrap-common",9100,252,45,10]),types.vector(["bootstrap2012/bootstrap-common",9086,252,31,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9086,252,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9087,252,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9202,255,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9202,255,9,2]),types.vector(["bootstrap2012/bootstrap-common",9205,255,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9209,255,16,1]),types.vector(["bootstrap2012/bootstrap-common",9211,255,18,1]),types.vector(["bootstrap2012/bootstrap-common",9213,255,20,1]),types.vector(["bootstrap2012/bootstrap-common",9208,255,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9208,255,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9209,255,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9435,260,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9435,260,9,4]),types.vector(["bootstrap2012/bootstrap-common",9440,260,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9444,260,18,3]),types.vector(["bootstrap2012/bootstrap-common",9448,260,22,16]),types.vector(["bootstrap2012/bootstrap-common",9443,260,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9443,260,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9444,260,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9449,260,23,1]),types.vector(["bootstrap2012/bootstrap-common",9451,260,25,1]),types.vector(["bootstrap2012/bootstrap-common",9453,260,27,10]),types.vector(["bootstrap2012/bootstrap-common",9448,260,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9448,260,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9449,260,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9454,260,28,1]),types.vector(["bootstrap2012/bootstrap-common",9456,260,30,2]),types.vector(["bootstrap2012/bootstrap-common",9459,260,33,3]),types.vector(["bootstrap2012/bootstrap-common",9453,260,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9453,260,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9454,260,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9456,260,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9687,265,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9687,265,9,6]),types.vector(["bootstrap2012/bootstrap-common",9694,265,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9698,265,20,3]),types.vector(["bootstrap2012/bootstrap-common",9702,265,24,16]),types.vector(["bootstrap2012/bootstrap-common",9697,265,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9697,265,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9698,265,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9703,265,25,1]),types.vector(["bootstrap2012/bootstrap-common",9705,265,27,1]),types.vector(["bootstrap2012/bootstrap-common",9707,265,29,10]),types.vector(["bootstrap2012/bootstrap-common",9702,265,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9702,265,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9703,265,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9708,265,30,1]),types.vector(["bootstrap2012/bootstrap-common",9710,265,32,2]),types.vector(["bootstrap2012/bootstrap-common",9713,265,35,3]),types.vector(["bootstrap2012/bootstrap-common",9707,265,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9707,265,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9708,265,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9710,265,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9939,270,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/bootstrap-common",9939,270,9,7]),types.vector(["bootstrap2012/bootstrap-common",9947,270,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9951,270,21,3]),types.vector(["bootstrap2012/bootstrap-common",9955,270,25,16]),types.vector(["bootstrap2012/bootstrap-common",9950,270,20,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9950,270,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9951,270,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9956,270,26,1]),types.vector(["bootstrap2012/bootstrap-common",9958,270,28,1]),types.vector(["bootstrap2012/bootstrap-common",9960,270,30,10]),types.vector(["bootstrap2012/bootstrap-common",9955,270,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9955,270,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9956,270,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",9961,270,31,1]),types.vector(["bootstrap2012/bootstrap-common",9963,270,33,2]),types.vector(["bootstrap2012/bootstrap-common",9966,270,36,3]),types.vector(["bootstrap2012/bootstrap-common",9960,270,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",9960,270,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9961,270,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",9963,270,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10049,274,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/bootstrap-common",10049,274,9,4]),types.vector(["bootstrap2012/bootstrap-common",10054,274,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10062,275,3,8]),types.vector(["bootstrap2012/bootstrap-common",10071,275,12,3]),types.vector(["bootstrap2012/bootstrap-common",10075,275,16,21]),types.vector(["bootstrap2012/bootstrap-common",10061,275,2,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10061,275,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10062,275,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10076,275,17,6]),types.vector(["bootstrap2012/bootstrap-common",10083,275,24,12]),types.vector(["bootstrap2012/bootstrap-common",10075,275,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10075,275,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10076,275,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10084,275,25,6]),types.vector(["bootstrap2012/bootstrap-common",10091,275,32,3]),types.vector(["bootstrap2012/bootstrap-common",10083,275,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10083,275,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10084,275,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10206,279,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",10206,279,9,7]),types.vector(["bootstrap2012/bootstrap-common",10214,279,17,1]),types.vector(["bootstrap2012/bootstrap-common",10216,279,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10223,280,3,6]),types.vector(["bootstrap2012/bootstrap-common",10233,281,3,29]),types.vector(["bootstrap2012/bootstrap-common",10266,282,3,1]),types.vector(["bootstrap2012/bootstrap-common",10222,280,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10222,280,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10223,280,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-common",10234,281,4,6]),types.vector(["bootstrap2012/bootstrap-common",10242,281,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10248,281,18,6]),types.vector(["bootstrap2012/bootstrap-common",10255,281,25,3]),types.vector(["bootstrap2012/bootstrap-common",10259,281,29,1]),types.vector(["bootstrap2012/bootstrap-common",10247,281,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10247,281,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10248,281,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10280,284,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/bootstrap-common",10280,284,9,3]),types.vector(["bootstrap2012/bootstrap-common",10284,284,13,1]),types.vector(["bootstrap2012/bootstrap-common",10286,284,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10292,285,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10296,285,7,5]),types.vector(["bootstrap2012/bootstrap-common",10302,285,13,1]),types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10296,285,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10295,285,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10306,285,17,7]),types.vector(["bootstrap2012/bootstrap-common",10314,285,25,1]),types.vector(["bootstrap2012/bootstrap-common",10316,285,27,1]),types.vector(["bootstrap2012/bootstrap-common",10305,285,16,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10305,285,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10306,285,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10320,285,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10324,285,35,3]),types.vector(["bootstrap2012/bootstrap-common",10328,285,39,12]),types.vector(["bootstrap2012/bootstrap-common",10341,285,52,2]),types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10324,285,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10329,285,40,6]),types.vector(["bootstrap2012/bootstrap-common",10336,285,47,1]),types.vector(["bootstrap2012/bootstrap-common",10338,285,49,1]),types.vector(["bootstrap2012/bootstrap-common",10328,285,39,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10328,285,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10329,285,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10323,285,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10365,288,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/bootstrap-common",10365,288,9,7]),types.vector(["bootstrap2012/bootstrap-common",10373,288,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10381,289,3,7]),types.vector(["bootstrap2012/bootstrap-common",10389,289,11,3]),types.vector(["bootstrap2012/bootstrap-common",10393,289,15,63]),types.vector(["bootstrap2012/bootstrap-common",10380,289,2,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10380,289,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10381,289,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10394,289,16,9]),types.vector(["bootstrap2012/bootstrap-common",10404,289,26,17]),types.vector(["bootstrap2012/bootstrap-common",10422,289,44,18]),types.vector(["bootstrap2012/bootstrap-common",10441,289,63,7]),types.vector(["bootstrap2012/bootstrap-common",10449,289,71,6]),types.vector(["bootstrap2012/bootstrap-common",10393,289,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10393,289,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10394,289,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10405,289,27,11]),types.vector(["bootstrap2012/bootstrap-common",10417,289,39,3]),types.vector(["bootstrap2012/bootstrap-common",10404,289,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10404,289,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10405,289,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-common",10423,289,45,12]),types.vector(["bootstrap2012/bootstrap-common",10436,289,58,3]),types.vector(["bootstrap2012/bootstrap-common",10422,289,44,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-common",10422,289,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-common",10423,289,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}}]}}, 'provides': ["in?","sine","subset?","tangent","type","sq","string->image","overlay-at","pick","put-image","number->image","boolean->string","color->alpha","cosine","clipart/url","boolean->image"]}; diff --git a/servlet-htdocs/collects/bootstrap2012/bootstrap-teachpack.js b/servlet-htdocs/collects/bootstrap2012/bootstrap-teachpack.js index d7be3f5..699fbbf 100644 --- a/servlet-htdocs/collects/bootstrap2012/bootstrap-teachpack.js +++ b/servlet-htdocs/collects/bootstrap2012/bootstrap-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2012/bootstrap-teachpack"] = { 'name': "bootstrap2012/bootstrap-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"set!"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"update-danger*"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"onscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"update"},{"$":"global-bucket","value":"enemies"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"dangerImgs"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"projectileImg"},{"$":"global-bucket","value":"update-projectile*"},{"$":"global-bucket","value":"update-danger"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"hitables"},{"$":"global-bucket","value":"update-projectile"},{"$":"global-bucket","value":"shootables"},{"$":"global-bucket","value":"reset-chars"},{"$":"global-bucket","value":"hit-by?"},{"$":"global-bucket","value":"timer"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"projectiles"},{"$":"global-bucket","value":"dangers"},{"$":"global-bucket","value":"tap"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"next-posn"},{"$":"global-bucket","value":"next-x"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"screen-point"},{"$":"global-bucket","value":"player-point"},{"$":"global-bucket","value":"py"},{"$":"global-bucket","value":"color"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"cy"},{"$":"global-bucket","value":"cx"},{"$":"global-bucket","value":"px"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world-with-shots"},{"$":"global-bucket","value":"world-with-timer"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-with-targets"},{"$":"global-bucket","value":"world-with-player"},{"$":"global-bucket","value":"world-with-score"},{"$":"global-bucket","value":"world-with-dangers"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-shots"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-dangers"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"play"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"fit-image-to"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"make-game"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"flatten"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"cull"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"boolean->image"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"add-informative-triangle"},{"$":"global-bucket","value":"animate/proc"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"TOLERANCE"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"LOSS-SCORE"},{"$":"global-bucket","value":"RESTING-TOP-DOWN-ORIENTATION"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"*player-x*"},{"$":"global-bucket","value":"*score*"},{"$":"global-bucket","value":"*target-increment*"},{"$":"global-bucket","value":"-TOLERANCE"},{"$":"global-bucket","value":"*player-y*"},{"$":"global-bucket","value":"*distance*"},{"$":"global-bucket","value":"*line-length*"},{"$":"global-bucket","value":"*distances-color*"},{"$":"global-bucket","value":"*danger-increment*"},{"$":"module-variable","sym":types.symbol("line"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("stop-when"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text/font"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("round"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("scale"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("radial-star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("ormap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tap"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("null?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("crop"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("inexact->exact"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("apply"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",193,9,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",212,10,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",232,11,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",264,12,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",277,12,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",281,12,25,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",276,12,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",277,12,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",299,13,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",311,13,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",315,13,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",310,13,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",311,13,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",316,13,25,9]),types.vector(["bootstrap2012/bootstrap-teachpack",326,13,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",332,13,41,6]),types.vector(["bootstrap2012/bootstrap-teachpack",339,13,48,7]),types.vector(["bootstrap2012/bootstrap-teachpack",347,13,56,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",315,13,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":176,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",316,13,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",326,13,35,5])},{"$":"toplevel","depth":5,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",332,13,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",367,14,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",367,14,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",377,14,19,6]),types.vector(["bootstrap2012/bootstrap-teachpack",384,14,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",376,14,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",377,14,19,6])},"rands":[{"$":"constant","value":200}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",398,15,8,18])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",429,16,8,18])}],"body":{"$":"constant","value":-50}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",461,17,8,10])}],"body":{"$":"constant","value":0}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",522,20,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",531,20,17,3]),types.vector(["bootstrap2012/bootstrap-teachpack",535,20,21,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",530,20,16,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",531,20,17,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",547,21,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",559,21,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",563,21,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",558,21,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",559,21,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",575,22,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",587,22,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",591,22,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",586,22,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",587,22,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",626,25,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",641,25,23,3]),types.vector(["bootstrap2012/bootstrap-teachpack",645,25,27,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",640,25,22,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",641,25,23,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",646,25,28,6]),types.vector(["bootstrap2012/bootstrap-teachpack",653,25,35,1]),types.vector(["bootstrap2012/bootstrap-teachpack",655,25,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",671,26,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",683,26,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",687,26,24,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",682,26,19,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",683,26,20,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",688,26,25,6]),types.vector(["bootstrap2012/bootstrap-teachpack",695,26,32,2]),types.vector(["bootstrap2012/bootstrap-teachpack",698,26,35,2]),types.vector(["bootstrap2012/bootstrap-teachpack",701,26,38,2]),types.vector(["bootstrap2012/bootstrap-teachpack",704,26,41,2])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",721,27,8,17])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",740,27,27,3]),types.vector(["bootstrap2012/bootstrap-teachpack",744,27,31,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",739,27,26,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",740,27,27,3])},"rands":[{"$":"constant","value":""}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",796,30,8,9])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",818,31,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",830,31,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",832,31,22,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",829,31,19,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",830,31,20,1])},"rands":[{"$":"toplevel","depth":1,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",832,31,22,9])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",913,34,8,28])}],"body":{"$":"constant","value":40}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1086,38,9,12])}],"body":{"$":"lam","name":types.symbol("fit-image-to"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",1086,38,9,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1099,38,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1101,38,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1103,38,26,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1131,40,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1133,40,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1156,40,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1131,40,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1134,40,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1146,40,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1133,40,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1134,40,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1157,40,34,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1159,40,36,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1167,40,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1156,40,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1157,40,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1160,40,37,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1162,40,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1164,40,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1159,40,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1160,40,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1168,40,45,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1181,40,58,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1167,40,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1168,40,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1201,41,8,5]),types.vector(["bootstrap2012/bootstrap-teachpack",1207,41,14,28]),types.vector(["bootstrap2012/bootstrap-teachpack",1236,41,43,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1200,41,7,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1201,41,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1208,41,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1210,41,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1212,41,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1207,41,14,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1208,41,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1213,41,20,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1225,41,32,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1212,41,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1213,41,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1255,42,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1257,42,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1280,42,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1255,42,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1258,42,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1270,42,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1257,42,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1258,42,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1281,42,34,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1283,42,36,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1291,42,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1280,42,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1281,42,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1284,42,37,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1286,42,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1288,42,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1283,42,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1284,42,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1292,42,45,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1305,42,58,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1291,42,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1292,42,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1326,43,8,5]),types.vector(["bootstrap2012/bootstrap-teachpack",1332,43,14,41]),types.vector(["bootstrap2012/bootstrap-teachpack",1388,44,14,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1325,43,7,143])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1326,43,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1333,43,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1335,43,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1337,43,19,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1332,43,14,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1333,43,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1338,43,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1340,43,22,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1348,43,30,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1337,43,19,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1338,43,20,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1341,43,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1343,43,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1345,43,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1340,43,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1341,43,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1349,43,31,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1362,43,44,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1348,43,30,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1349,43,31,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1389,44,15,4]),types.vector(["bootstrap2012/bootstrap-teachpack",1394,44,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1396,44,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1398,44,24,35]),types.vector(["bootstrap2012/bootstrap-teachpack",1434,44,60,23]),types.vector(["bootstrap2012/bootstrap-teachpack",1458,44,84,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1388,44,14,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":209,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1389,44,15,4])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1399,44,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1401,44,27,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1409,44,35,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1398,44,24,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1399,44,25,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1402,44,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1404,44,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1406,44,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1401,44,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1402,44,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1410,44,36,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1423,44,49,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1409,44,35,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1410,44,36,12])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1435,44,61,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1448,44,74,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1434,44,60,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1435,44,61,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1478,45,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1480,45,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1503,45,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1478,45,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1481,45,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1493,45,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1480,45,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1481,45,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1504,45,34,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1506,45,36,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1514,45,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1503,45,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1504,45,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1507,45,37,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1509,45,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1511,45,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1506,45,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1507,45,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1515,45,45,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1528,45,58,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1514,45,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1515,45,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1548,46,8,5]),types.vector(["bootstrap2012/bootstrap-teachpack",1554,46,14,28]),types.vector(["bootstrap2012/bootstrap-teachpack",1597,47,14,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1547,46,7,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1548,46,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1555,46,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1557,46,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1559,46,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1554,46,14,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1555,46,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1560,46,20,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1572,46,32,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1559,46,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1560,46,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1598,47,15,4]),types.vector(["bootstrap2012/bootstrap-teachpack",1603,47,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1605,47,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1607,47,24,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1630,47,47,34]),types.vector(["bootstrap2012/bootstrap-teachpack",1665,47,82,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1597,47,14,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":209,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1598,47,15,4])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1608,47,25,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1620,47,37,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1607,47,24,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1608,47,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1631,47,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1633,47,50,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1641,47,58,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1630,47,47,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1631,47,48,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1634,47,51,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1636,47,53,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1638,47,55,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1633,47,50,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1634,47,51,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1642,47,59,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1654,47,71,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1641,47,58,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1642,47,59,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567]),types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1793,52,9,4])}],"body":{"$":"lam","name":types.symbol("cull"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",1793,52,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",1798,52,14,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1809,53,3,6]),types.vector(["bootstrap2012/bootstrap-teachpack",1816,53,10,126]),types.vector(["bootstrap2012/bootstrap-teachpack",1943,54,70,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1808,53,2,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":222,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1809,53,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",1817,53,11,6]),types.vector(["bootstrap2012/bootstrap-teachpack",1825,53,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1834,53,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1836,53,30,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1848,53,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1834,53,28,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1837,53,31,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1845,53,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1836,53,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1837,53,31,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1852,53,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1854,53,48,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1866,53,60,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1852,53,46,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1855,53,49,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1863,53,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1854,53,48,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1855,53,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1866,53,60,5])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1901,54,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1903,54,30,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1915,54,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1901,54,28,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1904,54,31,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1912,54,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1903,54,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1904,54,31,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1919,54,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1921,54,48,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1933,54,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1919,54,46,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1922,54,49,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1930,54,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1921,54,48,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1922,54,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1933,54,60,6])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2095,61,15,5])},{"$":"toplevel","depth":0,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2235,65,15,5])},{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":8},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("dangers")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("shots")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":7},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2334,68,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2343,68,17,7]),types.vector(["bootstrap2012/bootstrap-teachpack",2351,68,25,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2358,68,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2342,68,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2343,68,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2351,68,25,6])},{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2358,68,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2379,69,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2388,69,17,7]),types.vector(["bootstrap2012/bootstrap-teachpack",2396,69,25,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2403,69,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2387,69,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2388,69,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2396,69,25,6])},{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2403,69,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2471,72,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",2471,72,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2483,72,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2490,72,28,9]),types.vector(["bootstrap2012/bootstrap-teachpack",2500,72,38,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2514,72,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2489,72,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2490,72,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2501,72,39,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2508,72,46,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2500,72,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2501,72,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2515,72,53,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2517,72,55,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2524,72,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2514,72,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2515,72,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2517,72,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2525,72,63,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2527,72,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2524,72,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2525,72,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2528,72,66,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2535,72,73,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2527,72,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2528,72,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2576,75,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-dangers"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",2576,75,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",2595,75,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2597,75,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2601,75,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",2612,75,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2630,75,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2646,75,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2664,75,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",2681,75,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",2694,75,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2710,75,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2726,75,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2600,75,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2601,75,34,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2631,75,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2643,75,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2630,75,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2631,75,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2647,75,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2661,75,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2646,75,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2647,75,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2665,75,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",2678,75,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2664,75,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2665,75,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2682,75,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",2691,75,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2681,75,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2682,75,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2695,75,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2707,75,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2694,75,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2695,75,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2711,75,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2723,75,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2710,75,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2711,75,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2727,75,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2739,75,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2726,75,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2727,75,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2753,76,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-shots"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",2753,76,9,16]),types.vector(["bootstrap2012/bootstrap-teachpack",2772,76,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2774,76,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2778,76,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",2789,76,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2807,76,63,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2823,76,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2841,76,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",2858,76,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",2871,76,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2887,76,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2903,76,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2777,76,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2778,76,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2790,76,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2804,76,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2789,76,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2790,76,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2824,76,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2838,76,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2823,76,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2824,76,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2842,76,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",2855,76,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2841,76,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2842,76,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2859,76,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",2868,76,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2858,76,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2859,76,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2872,76,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2884,76,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2871,76,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2872,76,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2888,76,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2900,76,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2887,76,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2888,76,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2904,76,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2916,76,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2903,76,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2904,76,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2930,77,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-targets"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",2930,77,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",2949,77,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2951,77,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2955,77,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",2966,77,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2984,77,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3000,77,79,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3018,77,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3035,77,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3048,77,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3064,77,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3080,77,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2954,77,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2955,77,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2967,77,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2981,77,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2966,77,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2967,77,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2985,77,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2997,77,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2984,77,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2985,77,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3019,77,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3032,77,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3018,77,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3019,77,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3036,77,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",3045,77,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3035,77,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3036,77,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3049,77,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3061,77,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3048,77,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3049,77,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3065,77,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3077,77,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3064,77,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3065,77,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3081,77,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3093,77,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3080,77,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3081,77,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3107,78,9,17])}],"body":{"$":"lam","name":types.symbol("world-with-player"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3107,78,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3126,78,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3128,78,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3132,78,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",3143,78,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3161,78,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3177,78,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3195,78,97,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3212,78,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3225,78,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3241,78,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3257,78,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3131,78,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3132,78,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3144,78,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3158,78,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3143,78,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3144,78,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3162,78,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3174,78,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3161,78,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3162,78,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3178,78,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3192,78,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3177,78,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3178,78,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3213,78,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",3222,78,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3212,78,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3213,78,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3226,78,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3238,78,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3225,78,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3226,78,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3242,78,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3254,78,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3241,78,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3242,78,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3258,78,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3270,78,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3257,78,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3258,78,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3284,79,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-score"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3284,79,9,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3303,79,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3305,79,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3309,79,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",3320,79,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3338,79,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3354,79,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3372,79,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3389,79,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3402,79,127,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3418,79,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3434,79,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3308,79,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3309,79,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3321,79,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3335,79,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3320,79,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3321,79,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3339,79,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3351,79,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3338,79,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3339,79,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3355,79,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3369,79,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3354,79,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3355,79,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3373,79,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3386,79,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3372,79,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3373,79,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3390,79,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",3399,79,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3389,79,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3390,79,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3419,79,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3431,79,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3418,79,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3419,79,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3435,79,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3447,79,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3434,79,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3435,79,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3461,80,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-timer"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3461,80,9,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3480,80,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3482,80,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3486,80,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",3497,80,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3515,80,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3531,80,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3549,80,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3566,80,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3579,80,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3595,80,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3611,80,159,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3485,80,33,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3486,80,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3498,80,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3512,80,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3497,80,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3498,80,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3516,80,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3528,80,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3515,80,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3516,80,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3532,80,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3546,80,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3531,80,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3532,80,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3550,80,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3563,80,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3549,80,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3550,80,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3567,80,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",3576,80,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3566,80,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3567,80,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3580,80,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3592,80,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3579,80,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3580,80,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3596,80,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3608,80,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3595,80,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3596,80,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3690,83,9,24])}],"body":{"$":"lam","name":types.symbol("add-informative-triangle"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3690,83,9,24]),types.vector(["bootstrap2012/bootstrap-teachpack",3715,83,34,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3718,83,37,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3721,83,40,5]),types.vector(["bootstrap2012/bootstrap-teachpack",3727,83,46,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3748,84,9,78]),types.vector(["bootstrap2012/bootstrap-teachpack",3762,84,23,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3748,84,9,78])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3748,84,9,78]),types.vector(["bootstrap2012/bootstrap-teachpack",3749,84,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3836,85,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",3840,85,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3836,85,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3836,85,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",3837,85,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3872,86,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",3876,86,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3872,86,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3872,86,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",3873,86,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3905,87,5,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3909,87,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3914,87,14,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3916,87,16,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3919,87,19,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3914,87,14,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3909,87,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3924,87,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3926,87,26,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3929,87,29,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3924,87,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4001,89,8,839]),types.vector(["bootstrap2012/bootstrap-teachpack",4011,89,18,9]),types.vector(["bootstrap2012/bootstrap-teachpack",4040,90,18,9]),types.vector(["bootstrap2012/bootstrap-teachpack",4071,91,20,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4001,89,8,839])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",4001,89,8,839]),types.vector(["bootstrap2012/bootstrap-teachpack",4008,89,15,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4037,90,15,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4066,91,15,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4145,92,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4169,93,11,52]),types.vector(["bootstrap2012/bootstrap-teachpack",4233,94,11,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4249,94,27,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4263,95,11,575])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4144,92,10,695])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4145,92,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4170,93,12,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4175,93,17,36]),types.vector(["bootstrap2012/bootstrap-teachpack",4212,93,54,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4215,93,57,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4169,93,11,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4170,93,12,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4176,93,18,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4181,93,23,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4175,93,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4182,93,24,21]),types.vector(["bootstrap2012/bootstrap-teachpack",4204,93,46,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4207,93,49,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4181,93,23,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4183,93,25,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4189,93,31,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4182,93,24,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4183,93,25,5])},"rands":[{"$":"toplevel","depth":11,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4189,93,31,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4234,94,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4236,94,14,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4239,94,17,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4233,94,11,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4234,94,12,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4240,94,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4242,94,20,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4245,94,23,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4239,94,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4240,94,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4264,95,12,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4288,96,12,17]),types.vector(["bootstrap2012/bootstrap-teachpack",4318,97,12,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4334,97,28,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4349,98,12,488])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4263,95,11,575])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4264,95,12,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4289,96,13,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4294,96,18,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4297,96,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4299,96,23,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4288,96,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4289,96,13,4])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4319,97,13,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4321,97,15,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4324,97,18,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4318,97,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4319,97,13,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4325,97,19,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4327,97,21,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4330,97,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4324,97,18,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4325,97,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4350,98,13,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4375,99,13,52]),types.vector(["bootstrap2012/bootstrap-teachpack",4441,100,13,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4444,100,16,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4473,101,13,363])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4349,98,12,488])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4350,98,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4376,99,14,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4381,99,19,36]),types.vector(["bootstrap2012/bootstrap-teachpack",4418,99,56,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4421,99,59,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4375,99,13,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4376,99,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4382,99,20,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4387,99,25,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4381,99,19,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4388,99,26,21]),types.vector(["bootstrap2012/bootstrap-teachpack",4410,99,48,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4413,99,51,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4387,99,25,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4389,99,27,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4395,99,33,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4388,99,26,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4389,99,27,5])},"rands":[{"$":"toplevel","depth":19,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4395,99,33,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4445,100,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4447,100,19,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4450,100,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4444,100,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4445,100,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4451,100,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4453,100,25,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4456,100,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4450,100,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4451,100,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4474,101,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4500,102,14,17]),types.vector(["bootstrap2012/bootstrap-teachpack",4532,103,14,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4535,103,17,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4565,104,14,270])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4473,101,13,363])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4474,101,14,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4501,102,15,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4506,102,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4508,102,22,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4511,102,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4500,102,14,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4501,102,15,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4536,103,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4538,103,20,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4541,103,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4535,103,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":18,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4536,103,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4542,103,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4544,103,26,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4547,103,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4541,103,23,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4542,103,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4566,104,15,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4593,105,15,55]),types.vector(["bootstrap2012/bootstrap-teachpack",4664,106,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4680,106,31,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4711,107,15,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4565,104,14,270])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4566,104,15,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4594,105,16,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4599,105,21,39]),types.vector(["bootstrap2012/bootstrap-teachpack",4639,105,61,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4642,105,64,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4593,105,15,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":23,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4594,105,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4600,105,22,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4605,105,27,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4599,105,21,39])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4606,105,28,18]),types.vector(["bootstrap2012/bootstrap-teachpack",4625,105,47,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4628,105,50,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4631,105,53,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4634,105,56,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4605,105,27,32])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4607,105,29,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4613,105,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4606,105,28,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":29,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4607,105,29,5])},"rands":[{"$":"toplevel","depth":29,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4613,105,35,10])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4665,106,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4667,106,18,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4670,106,21,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4664,106,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4665,106,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4671,106,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4673,106,24,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4676,106,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4670,106,21,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4671,106,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4681,106,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4683,106,34,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4686,106,37,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4680,106,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4681,106,32,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4687,106,38,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4689,106,40,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4692,106,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4686,106,37,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4687,106,38,1])},"rands":[{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4712,107,16,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4740,108,16,18]),types.vector(["bootstrap2012/bootstrap-teachpack",4775,109,16,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4791,109,32,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4823,110,16,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4711,107,15,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4712,107,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4741,108,17,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4746,108,22,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4749,108,25,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4752,108,28,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4740,108,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":27,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4741,108,17,4])},"rands":[{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4776,109,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4778,109,19,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4781,109,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4775,109,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4776,109,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4782,109,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4784,109,25,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4787,109,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4781,109,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4782,109,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4792,109,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4794,109,35,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4797,109,38,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4791,109,32,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4792,109,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4798,109,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4800,109,41,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4803,109,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4797,109,38,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4798,109,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":36,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4012,89,19,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4014,89,21,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4017,89,24,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4011,89,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4012,89,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4041,90,19,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4043,90,21,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4046,90,24,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4040,90,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4041,90,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",4072,91,21,6]),types.vector(["bootstrap2012/bootstrap-teachpack",4080,91,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4086,91,35,14]),types.vector(["bootstrap2012/bootstrap-teachpack",4101,91,50,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4085,91,34,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":192,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4086,91,35,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4102,91,51,14]),types.vector(["bootstrap2012/bootstrap-teachpack",4117,91,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4101,91,50,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":212,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4102,91,51,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4118,91,67,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4124,91,73,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4117,91,66,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":170,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4118,91,67,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3877,86,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",3884,86,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3876,86,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3877,86,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3841,85,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",3848,85,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3840,85,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3841,85,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3763,84,24,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3775,84,36,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3762,84,23,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3763,84,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3776,84,37,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3786,84,47,18]),types.vector(["bootstrap2012/bootstrap-teachpack",3805,84,66,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3775,84,36,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3776,84,37,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3787,84,48,5]),types.vector(["bootstrap2012/bootstrap-teachpack",3793,84,54,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3786,84,47,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3787,84,48,5])},"rands":[{"$":"toplevel","depth":5,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3793,84,54,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3806,84,67,5]),types.vector(["bootstrap2012/bootstrap-teachpack",3812,84,73,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3805,84,66,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3806,84,67,5])},"rands":[{"$":"toplevel","depth":5,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3812,84,73,10])}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4962,114,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",4962,114,9,10]),types.vector(["bootstrap2012/bootstrap-teachpack",4973,114,20,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4979,114,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5000,115,9,47]),types.vector(["bootstrap2012/bootstrap-teachpack",5014,115,23,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5000,115,9,47])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5000,115,9,47]),types.vector(["bootstrap2012/bootstrap-teachpack",5001,115,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5057,116,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",5061,116,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5057,116,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5057,116,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",5058,116,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5093,117,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",5097,117,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5093,117,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5093,117,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",5094,117,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5129,118,9,235]),types.vector(["bootstrap2012/bootstrap-teachpack",5140,118,20,223])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5129,118,9,235])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5129,118,9,235]),types.vector(["bootstrap2012/bootstrap-teachpack",5130,118,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5371,122,5,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5383,122,17,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5405,122,39,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5408,122,42,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5411,122,45,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5370,122,4,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5371,122,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5384,122,18,13]),types.vector(["bootstrap2012/bootstrap-teachpack",5398,122,32,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5383,122,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5384,122,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5141,118,21,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5145,118,25,8]),types.vector(["bootstrap2012/bootstrap-teachpack",5154,118,34,25]),types.vector(["bootstrap2012/bootstrap-teachpack",5180,118,60,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5145,118,25,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5155,118,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",5161,118,41,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5154,118,34,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5155,118,35,5])},"rands":[{"$":"toplevel","depth":8,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5161,118,41,17])}]}}},{"$":"constant","value":""}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5244,120,25,24]),types.vector(["bootstrap2012/bootstrap-teachpack",5269,120,50,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5272,120,53,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5275,120,56,25]),types.vector(["bootstrap2012/bootstrap-teachpack",5351,121,50,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5243,120,24,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5244,120,25,24])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5276,120,57,5]),types.vector(["bootstrap2012/bootstrap-teachpack",5282,120,63,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5275,120,56,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5276,120,57,5])},"rands":[{"$":"toplevel","depth":6,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5282,120,63,17])}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5098,117,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",5105,117,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5097,117,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5098,117,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5062,116,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",5069,116,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5061,116,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5062,116,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5015,115,24,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5027,115,36,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5014,115,23,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5015,115,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5028,115,37,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5039,115,48,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5027,115,36,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5028,115,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5548,127,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5548,127,9,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5559,127,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5571,128,9,118]),types.vector(["bootstrap2012/bootstrap-teachpack",5585,128,23,103])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5571,128,9,118])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5571,128,9,118]),types.vector(["bootstrap2012/bootstrap-teachpack",5572,128,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5699,130,9,305]),types.vector(["bootstrap2012/bootstrap-teachpack",5707,130,17,296])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5699,130,9,305])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5699,130,9,305]),types.vector(["bootstrap2012/bootstrap-teachpack",5700,130,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6014,135,9,90]),types.vector(["bootstrap2012/bootstrap-teachpack",6029,136,10,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6014,135,9,90])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",6014,135,9,90]),types.vector(["bootstrap2012/bootstrap-teachpack",6015,135,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6124,138,7,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6133,138,16,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6144,138,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6123,138,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6124,138,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6133,138,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6145,138,28,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6152,138,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6144,138,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6145,138,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6153,138,36,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6164,138,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6152,138,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6153,138,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6165,138,48,12]),types.vector(["bootstrap2012/bootstrap-teachpack",6178,138,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6164,138,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6165,138,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6191,139,7,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6200,139,16,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6211,139,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6190,139,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6191,139,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6200,139,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6212,139,28,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6219,139,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6211,139,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6212,139,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6220,139,36,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6231,139,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6219,139,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6220,139,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6232,139,48,12]),types.vector(["bootstrap2012/bootstrap-teachpack",6245,139,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6231,139,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6232,139,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6259,141,7,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6268,141,16,7]),types.vector(["bootstrap2012/bootstrap-teachpack",6276,141,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6258,141,6,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6259,141,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6268,141,16,7])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6277,141,25,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6289,141,37,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6276,141,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6277,141,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6300,142,7,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6304,142,11,2]),types.vector(["bootstrap2012/bootstrap-teachpack",6307,142,14,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6323,142,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6304,142,11,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6308,142,15,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6320,142,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6307,142,14,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6308,142,15,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6337,143,11,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6348,143,22,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6336,143,10,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":225,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6337,143,11,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2012/gameover.png"}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6421,144,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6433,144,23,77]),types.vector(["bootstrap2012/bootstrap-teachpack",6534,145,23,45]),types.vector(["bootstrap2012/bootstrap-teachpack",6580,145,69,2]),types.vector(["bootstrap2012/bootstrap-teachpack",6607,146,23,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6420,144,10,236])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6421,144,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6434,144,24,9]),types.vector(["bootstrap2012/bootstrap-teachpack",6444,144,34,12]),types.vector(["bootstrap2012/bootstrap-teachpack",6457,144,47,2]),types.vector(["bootstrap2012/bootstrap-teachpack",6460,144,50,19]),types.vector(["bootstrap2012/bootstrap-teachpack",6480,144,70,2]),types.vector(["bootstrap2012/bootstrap-teachpack",6483,144,73,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6492,144,82,7]),types.vector(["bootstrap2012/bootstrap-teachpack",6500,144,90,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6506,144,96,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6433,144,23,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6434,144,24,9])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":18},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6461,144,51,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6467,144,57,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6460,144,50,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6461,144,51,5])},"rands":[{"$":"toplevel","depth":13,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6467,144,57,11])}]}}},{"$":"constant","value":false},{"$":"constant","value":types.symbol("default")},{"$":"constant","value":types.symbol("italic")},{"$":"constant","value":types.symbol("bold")},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6535,145,24,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6544,145,33,32]),types.vector(["bootstrap2012/bootstrap-teachpack",6577,145,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6534,145,23,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6535,145,24,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6545,145,34,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6557,145,46,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6544,145,33,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6545,145,34,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6558,145,47,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6564,145,53,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6557,145,46,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6558,145,47,5])},"rands":[{"$":"toplevel","depth":8,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6564,145,53,10])}]}}}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6608,146,24,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6614,146,30,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6625,146,41,18]),types.vector(["bootstrap2012/bootstrap-teachpack",6644,146,60,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6607,146,23,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6608,146,24,5])},"rands":[{"$":"toplevel","depth":7,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6614,146,30,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6626,146,42,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6632,146,48,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6625,146,41,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6626,146,42,5])},"rands":[{"$":"toplevel","depth":8,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6632,146,48,10])}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6030,136,11,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6037,136,18,17]),types.vector(["bootstrap2012/bootstrap-teachpack",6055,136,36,17]),types.vector(["bootstrap2012/bootstrap-teachpack",6073,136,54,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6089,136,70,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6029,136,10,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6030,136,11,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6038,136,19,13]),types.vector(["bootstrap2012/bootstrap-teachpack",6052,136,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6037,136,18,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6038,136,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6056,136,37,13]),types.vector(["bootstrap2012/bootstrap-teachpack",6070,136,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6055,136,36,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6056,136,37,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6074,136,55,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6086,136,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6073,136,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6074,136,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6090,136,71,4]),types.vector(["bootstrap2012/bootstrap-teachpack",6095,136,76,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6089,136,70,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6090,136,71,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5708,130,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5712,130,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5714,130,24,15]),types.vector(["bootstrap2012/bootstrap-teachpack",5730,130,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5712,130,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5715,130,25,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5727,130,37,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5714,130,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5715,130,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5755,131,22,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5766,131,33,29]),types.vector(["bootstrap2012/bootstrap-teachpack",5829,132,33,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5754,131,21,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5755,131,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5767,131,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5778,131,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5766,131,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5767,131,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5779,131,46,12]),types.vector(["bootstrap2012/bootstrap-teachpack",5792,131,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5778,131,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5779,131,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5830,132,34,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5842,132,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5844,132,48,23]),types.vector(["bootstrap2012/bootstrap-teachpack",5868,132,72,23]),types.vector(["bootstrap2012/bootstrap-teachpack",5939,133,47,7]),types.vector(["bootstrap2012/bootstrap-teachpack",5947,133,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5829,132,33,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5830,132,34,11])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5845,132,49,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5847,132,51,3]),types.vector(["bootstrap2012/bootstrap-teachpack",5851,132,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5844,132,48,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5845,132,49,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5852,132,56,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5864,132,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5851,132,55,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5852,132,56,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5869,132,73,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5871,132,75,3]),types.vector(["bootstrap2012/bootstrap-teachpack",5875,132,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5868,132,72,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5869,132,73,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5876,132,80,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5888,132,92,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5875,132,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5876,132,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":8,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5947,133,55,15])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5987,134,22,12]),types.vector(["bootstrap2012/bootstrap-teachpack",6000,134,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5986,134,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5987,134,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5586,128,24,13]),types.vector(["bootstrap2012/bootstrap-teachpack",5600,128,38,15]),types.vector(["bootstrap2012/bootstrap-teachpack",5616,128,54,28]),types.vector(["bootstrap2012/bootstrap-teachpack",5655,129,38,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5585,128,23,103])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5586,128,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5601,128,39,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5613,128,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5600,128,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5601,128,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5656,129,39,14]),types.vector(["bootstrap2012/bootstrap-teachpack",5671,129,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5655,129,38,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":192,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5656,129,39,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5672,129,55,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5684,129,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5671,129,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5672,129,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6835,151,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",6835,151,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6847,151,21,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6864,153,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6866,153,8,19]),types.vector(["bootstrap2012/bootstrap-teachpack",6886,153,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6864,153,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6867,153,9,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6883,153,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6866,153,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6867,153,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",6895,154,6,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6903,154,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6907,154,18,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6918,154,29,39]),types.vector(["bootstrap2012/bootstrap-teachpack",6958,154,69,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6906,154,17,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6907,154,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6919,154,30,9]),types.vector(["bootstrap2012/bootstrap-teachpack",6929,154,40,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6945,154,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6918,154,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6919,154,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6930,154,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6932,154,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6929,154,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6933,154,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",6941,154,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6932,154,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6933,154,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6946,154,57,7]),types.vector(["bootstrap2012/bootstrap-teachpack",6954,154,65,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6945,154,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6946,154,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6959,154,70,13]),types.vector(["bootstrap2012/bootstrap-teachpack",6973,154,84,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6958,154,69,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6959,154,70,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6985,155,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6987,155,8,19]),types.vector(["bootstrap2012/bootstrap-teachpack",7007,155,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6985,155,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6988,155,9,15]),types.vector(["bootstrap2012/bootstrap-teachpack",7004,155,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6987,155,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6988,155,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7016,156,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7019,156,9,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7023,156,13,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7034,156,24,27]),types.vector(["bootstrap2012/bootstrap-teachpack",7062,156,52,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7022,156,12,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7023,156,13,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7035,156,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7037,156,27,11]),types.vector(["bootstrap2012/bootstrap-teachpack",7049,156,39,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7034,156,24,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7038,156,28,7]),types.vector(["bootstrap2012/bootstrap-teachpack",7046,156,36,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7037,156,27,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7038,156,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7050,156,40,7]),types.vector(["bootstrap2012/bootstrap-teachpack",7058,156,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7049,156,39,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7050,156,40,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7063,156,53,13]),types.vector(["bootstrap2012/bootstrap-teachpack",7077,156,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7062,156,52,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7063,156,53,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231]),types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7217,161,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7217,161,9,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7223,161,15,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7229,161,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7241,162,9,60]),types.vector(["bootstrap2012/bootstrap-teachpack",7252,162,20,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7241,162,9,60])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7241,162,9,60]),types.vector(["bootstrap2012/bootstrap-teachpack",7242,162,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7311,163,9,33]),types.vector(["bootstrap2012/bootstrap-teachpack",7319,163,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7311,163,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7311,163,9,33]),types.vector(["bootstrap2012/bootstrap-teachpack",7312,163,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7354,164,9,33]),types.vector(["bootstrap2012/bootstrap-teachpack",7362,164,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7354,164,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7354,164,9,33]),types.vector(["bootstrap2012/bootstrap-teachpack",7355,164,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7397,165,9,443]),types.vector(["bootstrap2012/bootstrap-teachpack",7410,165,22,429])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7397,165,9,443])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7397,165,9,443]),types.vector(["bootstrap2012/bootstrap-teachpack",7398,165,10,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7847,172,5,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7858,172,16,11]),types.vector(["bootstrap2012/bootstrap-teachpack",7870,172,28,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7846,172,4,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7847,172,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7871,172,29,13]),types.vector(["bootstrap2012/bootstrap-teachpack",7885,172,43,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7870,172,28,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7871,172,29,13])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7411,165,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7415,165,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7417,165,29,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7430,165,42,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7415,165,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7418,165,30,3]),types.vector(["bootstrap2012/bootstrap-teachpack",7422,165,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7417,165,29,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7418,165,30,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7431,165,43,3]),types.vector(["bootstrap2012/bootstrap-teachpack",7435,165,47,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7430,165,42,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7431,165,43,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7471,166,27,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7475,166,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7477,166,33,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7484,166,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7475,166,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7518,167,31,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7528,167,41,14]),types.vector(["bootstrap2012/bootstrap-teachpack",7543,167,56,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7517,167,30,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7518,167,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7529,167,42,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7536,167,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7528,167,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7529,167,42,6])},"rands":[{"$":"toplevel","depth":4,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7536,167,49,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7544,167,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7546,167,59,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7556,167,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7543,167,56,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7544,167,57,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7547,167,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7546,167,59,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7547,167,60,7])},"rands":[]}}},{"$":"toplevel","depth":5,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7556,167,69,6])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7596,168,31,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7606,168,41,14]),types.vector(["bootstrap2012/bootstrap-teachpack",7621,168,56,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7595,168,30,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7596,168,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7607,168,42,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7614,168,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7606,168,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7607,168,42,6])},"rands":[{"$":"toplevel","depth":4,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7614,168,49,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7622,168,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7624,168,59,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7634,168,69,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7621,168,56,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7622,168,57,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7625,168,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7624,168,59,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7625,168,60,7])},"rands":[]}}},{"$":"constant","value":-1}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7667,169,27,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7671,169,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7673,169,33,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7680,169,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7671,169,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7715,170,31,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7725,170,41,19]),types.vector(["bootstrap2012/bootstrap-teachpack",7745,170,61,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7714,170,30,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7715,170,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7726,170,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7728,170,44,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7738,170,54,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7725,170,41,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7726,170,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7729,170,45,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7728,170,44,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7729,170,45,7])},"rands":[]}}},{"$":"toplevel","depth":5,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7738,170,54,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7746,170,62,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7753,170,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7745,170,61,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7746,170,62,6])},"rands":[{"$":"toplevel","depth":4,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7753,170,69,6])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7794,171,31,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7804,171,41,16]),types.vector(["bootstrap2012/bootstrap-teachpack",7821,171,58,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7793,171,30,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7794,171,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7805,171,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7807,171,44,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7817,171,54,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7804,171,41,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7805,171,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7808,171,45,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7807,171,44,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7808,171,45,7])},"rands":[]}}},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7822,171,59,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7829,171,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7821,171,58,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7822,171,59,6])},"rands":[{"$":"toplevel","depth":4,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7829,171,66,6])}]}}}]}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7363,164,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7365,164,20,18]),types.vector(["bootstrap2012/bootstrap-teachpack",7384,164,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7362,164,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7363,164,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7366,164,21,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7373,164,28,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7365,164,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7366,164,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7320,163,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7322,163,20,18]),types.vector(["bootstrap2012/bootstrap-teachpack",7341,163,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7319,163,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7320,163,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7323,163,21,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7330,163,28,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7322,163,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7323,163,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7253,162,21,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7264,162,32,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7252,162,20,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7253,162,21,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7265,162,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7267,162,35,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7264,162,32,35])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7268,162,36,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7279,162,47,15]),types.vector(["bootstrap2012/bootstrap-teachpack",7295,162,63,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7267,162,35,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7268,162,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7280,162,48,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7290,162,58,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7292,162,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7279,162,47,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7280,162,48,9])},"rands":[{"$":"constant","value":1},{"$":"constant","value":1}]}}},{"$":"constant","value":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7906,175,9,9])}],"body":{"$":"lam","name":types.symbol("make-game"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7906,175,9,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7916,175,19,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7922,175,25,11]),types.vector(["bootstrap2012/bootstrap-teachpack",7934,175,37,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7965,176,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7976,176,30,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8010,177,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8021,177,30,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8055,178,19,9]),types.vector(["bootstrap2012/bootstrap-teachpack",8065,178,29,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8099,179,19,14]),types.vector(["bootstrap2012/bootstrap-teachpack",8114,179,34,17]),types.vector(["bootstrap2012/bootstrap-teachpack",8152,180,19,15]),types.vector(["bootstrap2012/bootstrap-teachpack",8168,180,35,11]),types.vector(["bootstrap2012/bootstrap-teachpack",8180,180,47,8]),types.vector(["bootstrap2012/bootstrap-teachpack",8209,181,19,7]),types.vector(["bootstrap2012/bootstrap-teachpack",8217,181,27,8])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",8230,182,3,4]),types.vector(["bootstrap2012/bootstrap-teachpack",8235,182,8,5]),types.vector(["bootstrap2012/bootstrap-teachpack",8241,182,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",8253,182,26,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8273,183,8,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8284,183,19,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8307,184,8,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8318,184,19,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8341,185,8,9]),types.vector(["bootstrap2012/bootstrap-teachpack",8351,185,18,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8373,186,8,14]),types.vector(["bootstrap2012/bootstrap-teachpack",8388,186,23,17]),types.vector(["bootstrap2012/bootstrap-teachpack",8415,187,8,15]),types.vector(["bootstrap2012/bootstrap-teachpack",8431,187,24,11]),types.vector(["bootstrap2012/bootstrap-teachpack",8443,187,36,8]),types.vector(["bootstrap2012/bootstrap-teachpack",8461,188,8,7]),types.vector(["bootstrap2012/bootstrap-teachpack",8469,188,16,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",8229,182,2,249])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8230,182,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8492,192,9,4])}],"body":{"$":"lam","name":types.symbol("play"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",8492,192,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",8497,192,14,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",8504,192,21,5]),types.vector(["bootstrap2012/bootstrap-teachpack",8510,192,27,12]),types.vector(["bootstrap2012/bootstrap-teachpack",8523,192,40,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",8503,192,20,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":240,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8504,192,21,5])},"rands":[{"$":"toplevel","depth":2,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8510,192,27,12])},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8842,199,9,12])}],"body":{"$":"lam","name":types.symbol("animate/proc"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",8842,199,9,12]),types.vector(["bootstrap2012/bootstrap-teachpack",8855,199,22,5]),types.vector(["bootstrap2012/bootstrap-teachpack",8861,199,28,11]),types.vector(["bootstrap2012/bootstrap-teachpack",8895,200,22,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8915,201,22,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8929,201,36,14]),types.vector(["bootstrap2012/bootstrap-teachpack",8952,202,22,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8966,202,36,14]),types.vector(["bootstrap2012/bootstrap-teachpack",8989,203,22,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9003,203,36,14]),types.vector(["bootstrap2012/bootstrap-teachpack",9040,204,22,13]),types.vector(["bootstrap2012/bootstrap-teachpack",9054,204,36,18]),types.vector(["bootstrap2012/bootstrap-teachpack",9095,205,22,15]),types.vector(["bootstrap2012/bootstrap-teachpack",9111,205,38,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9123,205,50,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9154,206,22,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9164,206,32,10])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9190,208,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9199,208,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9211,208,26,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9189,208,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9190,208,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9199,208,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9229,209,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9238,209,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9249,209,25,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9228,209,4,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9229,209,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9238,209,14,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9250,209,26,12]),types.vector(["bootstrap2012/bootstrap-teachpack",9263,209,39,5]),types.vector(["bootstrap2012/bootstrap-teachpack",9269,209,45,6]),types.vector(["bootstrap2012/bootstrap-teachpack",9276,209,52,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9249,209,25,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9250,209,26,12])},"rands":[{"$":"toplevel","depth":5,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9263,209,39,5])},{"$":"toplevel","depth":5,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9269,209,45,6])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9294,210,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9303,210,14,13]),types.vector(["bootstrap2012/bootstrap-teachpack",9317,210,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9293,210,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9294,210,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9303,210,14,13])},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9335,211,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9344,211,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9355,211,25,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9334,211,4,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9335,211,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9344,211,14,10])},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9370,212,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9379,212,14,17]),types.vector(["bootstrap2012/bootstrap-teachpack",9397,212,32,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9369,212,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9370,212,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9379,212,14,17])},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9425,213,11,68]),types.vector(["bootstrap2012/bootstrap-teachpack",9433,213,19,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9425,213,11,68])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9425,213,11,68]),types.vector(["bootstrap2012/bootstrap-teachpack",9426,213,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,10,11,12,16,17],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9589,216,11,44]),types.vector(["bootstrap2012/bootstrap-teachpack",9604,216,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9589,216,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9589,216,11,44]),types.vector(["bootstrap2012/bootstrap-teachpack",9590,216,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9645,217,11,44]),types.vector(["bootstrap2012/bootstrap-teachpack",9660,217,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9645,217,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9645,217,11,44]),types.vector(["bootstrap2012/bootstrap-teachpack",9646,217,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9701,218,11,52]),types.vector(["bootstrap2012/bootstrap-teachpack",9720,218,30,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9701,218,11,52])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9701,218,11,52]),types.vector(["bootstrap2012/bootstrap-teachpack",9702,218,12,17])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9765,219,11,348]),types.vector(["bootstrap2012/bootstrap-teachpack",9793,220,12,319])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9765,219,11,348])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9765,219,11,348]),types.vector(["bootstrap2012/bootstrap-teachpack",9766,219,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10125,225,11,182]),types.vector(["bootstrap2012/bootstrap-teachpack",10136,225,22,170])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10125,225,11,182])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10125,225,11,182]),types.vector(["bootstrap2012/bootstrap-teachpack",10126,225,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10319,228,11,130]),types.vector(["bootstrap2012/bootstrap-teachpack",10329,228,21,119])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10319,228,11,130])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10319,228,11,130]),types.vector(["bootstrap2012/bootstrap-teachpack",10320,228,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10532,232,11,64]),types.vector(["bootstrap2012/bootstrap-teachpack",10541,232,20,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10532,232,11,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10532,232,11,64]),types.vector(["bootstrap2012/bootstrap-teachpack",10533,232,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10703,235,11,232]),types.vector(["bootstrap2012/bootstrap-teachpack",10716,235,24,218])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10703,235,11,232])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10703,235,11,232]),types.vector(["bootstrap2012/bootstrap-teachpack",10704,235,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11034,241,11,133]),types.vector(["bootstrap2012/bootstrap-teachpack",11043,241,20,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11034,241,11,133])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11034,241,11,133]),types.vector(["bootstrap2012/bootstrap-teachpack",11035,241,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11179,243,11,133]),types.vector(["bootstrap2012/bootstrap-teachpack",11188,243,20,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11179,243,11,133])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11179,243,11,133]),types.vector(["bootstrap2012/bootstrap-teachpack",11180,243,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11324,245,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",11331,245,18,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11324,245,11,11])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11324,245,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",11325,245,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11451,248,11,72]),types.vector(["bootstrap2012/bootstrap-teachpack",11458,248,18,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11451,248,11,72])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11451,248,11,72]),types.vector(["bootstrap2012/bootstrap-teachpack",11452,248,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11593,251,11,826]),types.vector(["bootstrap2012/bootstrap-teachpack",11603,251,21,815])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11593,251,11,826])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11593,251,11,826]),types.vector(["bootstrap2012/bootstrap-teachpack",11594,251,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12432,264,11,377]),types.vector(["bootstrap2012/bootstrap-teachpack",12438,264,17,370])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12432,264,11,377])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12432,264,11,377]),types.vector(["bootstrap2012/bootstrap-teachpack",12433,264,12,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12821,271,11,39]),types.vector(["bootstrap2012/bootstrap-teachpack",12826,271,16,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12821,271,11,39])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12821,271,11,39]),types.vector(["bootstrap2012/bootstrap-teachpack",12822,271,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12928,274,11,2513]),types.vector(["bootstrap2012/bootstrap-teachpack",12942,274,25,2498])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12928,274,11,2513])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12928,274,11,2513]),types.vector(["bootstrap2012/bootstrap-teachpack",12929,274,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15451,310,7,8]),types.vector(["bootstrap2012/bootstrap-teachpack",15460,310,16,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15482,311,16,47]),types.vector(["bootstrap2012/bootstrap-teachpack",15546,312,16,25]),types.vector(["bootstrap2012/bootstrap-teachpack",15588,313,16,22]),types.vector(["bootstrap2012/bootstrap-teachpack",15627,314,16,17]),types.vector(["bootstrap2012/bootstrap-teachpack",15695,316,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15450,310,6,258])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":238,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15451,310,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15483,311,17,9]),types.vector(["bootstrap2012/bootstrap-teachpack",15493,311,27,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15482,311,16,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15483,311,17,9])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",15494,311,28,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15502,311,36,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[7],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15506,311,40,1]),types.vector(["bootstrap2012/bootstrap-teachpack",15508,311,42,15]),types.vector(["bootstrap2012/bootstrap-teachpack",15524,311,58,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15505,311,39,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15506,311,40,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15509,311,43,11]),types.vector(["bootstrap2012/bootstrap-teachpack",15521,311,55,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15508,311,42,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15509,311,43,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":-1}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15547,312,17,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15555,312,25,12]),types.vector(["bootstrap2012/bootstrap-teachpack",15568,312,38,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15546,312,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15547,312,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15589,313,17,9]),types.vector(["bootstrap2012/bootstrap-teachpack",15599,313,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15588,313,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15589,313,17,9])},"rands":[{"$":"toplevel","depth":7,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15599,313,27,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15628,314,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15635,314,24,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15627,314,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":193,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15628,314,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15696,316,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15703,316,24,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15695,316,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":191,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15696,316,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12943,274,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12946,274,29,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12984,275,34,25]),types.vector(["bootstrap2012/bootstrap-teachpack",12992,275,42,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12984,275,34,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12984,275,34,25]),types.vector(["bootstrap2012/bootstrap-teachpack",12985,275,35,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13044,276,34,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13048,276,38,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13044,276,34,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13044,276,34,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13045,276,35,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13096,277,34,23]),types.vector(["bootstrap2012/bootstrap-teachpack",13103,277,41,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13096,277,34,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13096,277,34,23]),types.vector(["bootstrap2012/bootstrap-teachpack",13097,277,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13154,278,34,23]),types.vector(["bootstrap2012/bootstrap-teachpack",13161,278,41,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13154,278,34,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13154,278,34,23]),types.vector(["bootstrap2012/bootstrap-teachpack",13155,278,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13313,280,34,57]),types.vector(["bootstrap2012/bootstrap-teachpack",13325,280,46,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13313,280,34,57])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13313,280,34,57]),types.vector(["bootstrap2012/bootstrap-teachpack",13314,280,35,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13405,281,34,40]),types.vector(["bootstrap2012/bootstrap-teachpack",13415,281,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13405,281,34,40])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13405,281,34,40]),types.vector(["bootstrap2012/bootstrap-teachpack",13406,281,35,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13703,285,34,64]),types.vector(["bootstrap2012/bootstrap-teachpack",13712,285,43,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13703,285,34,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13703,285,34,64]),types.vector(["bootstrap2012/bootstrap-teachpack",13704,285,35,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13802,286,34,64]),types.vector(["bootstrap2012/bootstrap-teachpack",13811,286,43,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13802,286,34,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13802,286,34,64]),types.vector(["bootstrap2012/bootstrap-teachpack",13803,286,35,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13901,287,34,79]),types.vector(["bootstrap2012/bootstrap-teachpack",13914,287,47,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13901,287,34,79])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13901,287,34,79]),types.vector(["bootstrap2012/bootstrap-teachpack",13902,287,35,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,5,6,7,8,9,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14123,290,34,206]),types.vector(["bootstrap2012/bootstrap-teachpack",14130,290,41,198])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14123,290,34,206])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",14123,290,34,206]),types.vector(["bootstrap2012/bootstrap-teachpack",14124,290,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14529,296,33,2]),types.vector(["bootstrap2012/bootstrap-teachpack",14532,296,36,15]),types.vector(["bootstrap2012/bootstrap-teachpack",14548,296,52,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14529,296,33,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14533,296,37,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14545,296,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14532,296,36,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14533,296,37,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14548,296,52,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14596,297,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14598,297,35,15]),types.vector(["bootstrap2012/bootstrap-teachpack",14614,297,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14596,297,33,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14599,297,36,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14611,297,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14598,297,35,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14599,297,36,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14650,298,33,10]),types.vector(["bootstrap2012/bootstrap-teachpack",14661,298,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14669,298,52,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14681,298,64,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14689,298,72,6]),types.vector(["bootstrap2012/bootstrap-teachpack",14696,298,79,2]),types.vector(["bootstrap2012/bootstrap-teachpack",14744,299,44,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14750,299,50,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14756,299,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14649,298,32,120])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14650,298,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14757,299,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14759,299,59,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14765,299,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14756,299,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14757,299,57,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14804,300,33,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14812,300,41,6]),types.vector(["bootstrap2012/bootstrap-teachpack",14819,300,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14820,300,49,13]),types.vector(["bootstrap2012/bootstrap-teachpack",14834,300,63,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14819,300,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14820,300,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14871,301,33,10]),types.vector(["bootstrap2012/bootstrap-teachpack",14882,301,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14890,301,52,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14902,301,64,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14910,301,72,6]),types.vector(["bootstrap2012/bootstrap-teachpack",14917,301,79,2]),types.vector(["bootstrap2012/bootstrap-teachpack",14965,302,44,28]),types.vector(["bootstrap2012/bootstrap-teachpack",14994,302,73,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15000,302,79,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14870,301,32,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14871,301,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14966,302,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14968,302,47,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14974,302,53,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14965,302,44,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14966,302,45,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14974,302,53,18])}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15039,303,33,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15047,303,41,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15054,303,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15055,303,49,13]),types.vector(["bootstrap2012/bootstrap-teachpack",15069,303,63,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15054,303,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15055,303,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15106,304,33,10]),types.vector(["bootstrap2012/bootstrap-teachpack",15117,304,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15125,304,52,11]),types.vector(["bootstrap2012/bootstrap-teachpack",15137,304,64,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15145,304,72,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15152,304,79,2]),types.vector(["bootstrap2012/bootstrap-teachpack",15200,305,44,28]),types.vector(["bootstrap2012/bootstrap-teachpack",15229,305,73,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15235,305,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15105,304,32,146])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15106,304,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15201,305,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",15203,305,47,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15209,305,53,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15200,305,44,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15201,305,45,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15209,305,53,18])}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15236,305,80,11]),types.vector(["bootstrap2012/bootstrap-teachpack",15248,305,92,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15235,305,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15236,305,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15291,306,38,10]),types.vector(["bootstrap2012/bootstrap-teachpack",15302,306,49,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15310,306,57,11]),types.vector(["bootstrap2012/bootstrap-teachpack",15322,306,69,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15330,306,77,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15337,306,84,2]),types.vector(["bootstrap2012/bootstrap-teachpack",15390,307,49,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15396,307,55,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15402,307,61,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15290,306,37,118])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15291,306,38,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920]),types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])}]}}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14131,290,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14133,290,44,15]),types.vector(["bootstrap2012/bootstrap-teachpack",14193,291,44,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14130,290,41,198])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14131,290,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14134,290,45,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14146,290,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14133,290,44,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14134,290,45,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14194,291,45,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14198,291,49,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14204,291,55,36]),types.vector(["bootstrap2012/bootstrap-teachpack",14241,291,92,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14198,291,49,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",14205,291,56,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14207,291,58,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14211,291,62,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14219,291,70,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14221,291,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14210,291,61,29])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14222,291,73,13]),types.vector(["bootstrap2012/bootstrap-teachpack",14236,291,87,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14221,291,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14222,291,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14242,291,93,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14254,291,105,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14241,291,92,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14242,291,93,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])}]}}},"then":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14306,292,48,18])},"else":{"$":"constant","value":0}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13915,287,48,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13927,287,60,22]),types.vector(["bootstrap2012/bootstrap-teachpack",13950,287,83,10]),types.vector(["bootstrap2012/bootstrap-teachpack",13961,287,94,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13914,287,47,65])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13928,287,61,4]),types.vector(["bootstrap2012/bootstrap-teachpack",13933,287,66,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13927,287,60,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13928,287,61,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13934,287,67,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13946,287,79,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13933,287,66,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13934,287,67,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13812,286,44,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13824,286,56,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13842,286,74,8]),types.vector(["bootstrap2012/bootstrap-teachpack",13851,286,83,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13811,286,43,54])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13825,286,57,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13839,286,71,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13824,286,56,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13825,286,57,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13713,285,44,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13725,285,56,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13743,285,74,8]),types.vector(["bootstrap2012/bootstrap-teachpack",13752,285,83,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13712,285,43,54])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13726,285,57,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13740,285,71,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13725,285,56,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13726,285,57,13])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13416,281,45,4]),types.vector(["bootstrap2012/bootstrap-teachpack",13421,281,50,6]),types.vector(["bootstrap2012/bootstrap-teachpack",13428,281,57,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13415,281,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13416,281,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13429,281,58,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13441,281,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13428,281,57,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13429,281,58,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13326,280,47,6]),types.vector(["bootstrap2012/bootstrap-teachpack",13333,280,54,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13351,280,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13325,280,46,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13326,280,47,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13334,280,55,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13348,280,69,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13333,280,54,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13334,280,55,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13352,280,73,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13366,280,87,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13351,280,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13352,280,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13162,278,42,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13174,278,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13161,278,41,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13162,278,42,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13104,277,42,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13116,277,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13103,277,41,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13104,277,42,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13049,276,39,8]),types.vector(["bootstrap2012/bootstrap-teachpack",13058,276,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13048,276,38,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13049,276,39,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12993,275,43,12]),types.vector(["bootstrap2012/bootstrap-teachpack",13006,275,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12992,275,42,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12993,275,43,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12827,271,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",12835,271,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12837,271,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12839,271,29,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[8],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12843,271,33,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12852,271,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12854,271,44,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12842,271,32,16])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12439,264,18,6]),types.vector(["bootstrap2012/bootstrap-teachpack",12447,264,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12449,264,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12451,264,30,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12501,266,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12503,266,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12505,266,26,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12501,266,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":6,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12505,266,26,9])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12517,266,38,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12526,266,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12528,266,49,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12516,266,37,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12560,267,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12562,267,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12564,267,26,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12560,267,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":6,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12564,267,26,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12577,267,39,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12586,267,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12588,267,50,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12576,267,38,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12619,268,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12621,268,24,34]),types.vector(["bootstrap2012/bootstrap-teachpack",12656,268,59,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12619,268,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12622,268,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12624,268,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12626,268,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12621,268,24,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12622,268,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":8,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12626,268,29,28])}]}}},{"$":"toplevel","depth":6,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12656,268,59,9])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12668,268,71,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12677,268,80,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12679,268,82,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12667,268,70,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12710,269,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12712,269,24,34]),types.vector(["bootstrap2012/bootstrap-teachpack",12747,269,59,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12710,269,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12713,269,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12715,269,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12717,269,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12712,269,24,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12713,269,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":8,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12717,269,29,28])}]}}},{"$":"toplevel","depth":6,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12747,269,59,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12760,269,72,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12769,269,81,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12771,269,83,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12759,269,71,17])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334]),types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])}]}}}}}}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11604,251,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11606,251,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11608,251,26,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2,3,7,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11669,253,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11674,253,32,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11683,253,41,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11687,253,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11674,253,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11669,253,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11693,253,51,2]),types.vector(["bootstrap2012/bootstrap-teachpack",11696,253,54,15]),types.vector(["bootstrap2012/bootstrap-teachpack",11712,253,70,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11693,253,51,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11697,253,55,11]),types.vector(["bootstrap2012/bootstrap-teachpack",11709,253,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11696,253,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11697,253,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":10,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11712,253,70,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11759,254,27,2]),types.vector(["bootstrap2012/bootstrap-teachpack",11762,254,30,15]),types.vector(["bootstrap2012/bootstrap-teachpack",11778,254,46,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11759,254,27,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11763,254,31,11]),types.vector(["bootstrap2012/bootstrap-teachpack",11775,254,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11762,254,30,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11763,254,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11778,254,46,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11820,255,27,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11829,255,36,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11833,255,40,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11820,255,27,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"release"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11874,256,27,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11883,256,36,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11887,256,40,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11874,256,27,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"escape"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11898,256,51,16]),types.vector(["bootstrap2012/bootstrap-teachpack",11915,256,68,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11917,256,70,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11897,256,50,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11898,256,51,16])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11949,257,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11954,257,32,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11963,257,41,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11967,257,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11954,257,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11949,257,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12004,258,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12086,259,36,3]),types.vector(["bootstrap2012/bootstrap-teachpack",12090,259,40,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12086,259,36,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12091,259,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12093,259,43,24]),types.vector(["bootstrap2012/bootstrap-teachpack",12118,259,68,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12090,259,40,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12091,259,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12094,259,44,18]),types.vector(["bootstrap2012/bootstrap-teachpack",12113,259,63,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12093,259,43,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}},{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12004,258,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12008,258,36,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12010,258,38,36]),types.vector(["bootstrap2012/bootstrap-teachpack",12047,258,75,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12008,258,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12011,258,39,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12027,258,55,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12010,258,38,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12011,258,39,15])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12153,260,27,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12170,260,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12172,260,46,151])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12152,260,26,172])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12153,260,27,16])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12173,260,47,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12178,260,52,76]),types.vector(["bootstrap2012/bootstrap-teachpack",12307,261,52,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12172,260,46,151])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12173,260,47,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12179,260,53,10]),types.vector(["bootstrap2012/bootstrap-teachpack",12190,260,64,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12240,260,114,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12178,260,52,76])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12179,260,53,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12191,260,65,9]),types.vector(["bootstrap2012/bootstrap-teachpack",12201,260,75,18]),types.vector(["bootstrap2012/bootstrap-teachpack",12220,260,94,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12190,260,64,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12191,260,65,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12202,260,76,5]),types.vector(["bootstrap2012/bootstrap-teachpack",12208,260,82,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12201,260,75,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12202,260,76,5])},"rands":[{"$":"toplevel","depth":9,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12208,260,82,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12221,260,95,5]),types.vector(["bootstrap2012/bootstrap-teachpack",12227,260,101,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12220,260,94,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12221,260,95,5])},"rands":[{"$":"toplevel","depth":9,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12227,260,101,10])}]}}}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12308,261,53,11]),types.vector(["bootstrap2012/bootstrap-teachpack",12320,261,65,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12307,261,52,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12308,261,53,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12358,262,32,17]),types.vector(["bootstrap2012/bootstrap-teachpack",12376,262,50,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12378,262,52,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12357,262,31,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12358,262,32,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12379,262,53,13]),types.vector(["bootstrap2012/bootstrap-teachpack",12393,262,67,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12410,262,84,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12378,262,52,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12394,262,68,12]),types.vector(["bootstrap2012/bootstrap-teachpack",12407,262,81,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12393,262,67,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12394,262,68,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781]),types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])}]}}}}}}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11459,248,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11470,248,30,7]),types.vector(["bootstrap2012/bootstrap-teachpack",11478,248,38,5]),types.vector(["bootstrap2012/bootstrap-teachpack",11484,248,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",11492,248,52,6]),types.vector(["bootstrap2012/bootstrap-teachpack",11499,248,59,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11510,248,70,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11514,248,74,5]),types.vector(["bootstrap2012/bootstrap-teachpack",11520,248,80,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11458,248,18,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11459,248,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"constant","value":types.EMPTY}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11189,243,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11193,243,25,64]),types.vector(["bootstrap2012/bootstrap-teachpack",11283,244,25,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11188,243,20,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11189,243,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11194,243,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11197,243,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11203,243,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",11209,243,41,32]),types.vector(["bootstrap2012/bootstrap-teachpack",11242,243,74,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11202,243,34,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11203,243,35,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11210,243,42,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11221,243,53,15]),types.vector(["bootstrap2012/bootstrap-teachpack",11237,243,69,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11209,243,41,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11210,243,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11222,243,54,9]),types.vector(["bootstrap2012/bootstrap-teachpack",11232,243,64,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11234,243,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11221,243,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11222,243,54,9])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11284,244,26,7]),types.vector(["bootstrap2012/bootstrap-teachpack",11292,244,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11283,244,25,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11284,244,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11293,244,35,4]),types.vector(["bootstrap2012/bootstrap-teachpack",11298,244,40,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11292,244,34,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11293,244,35,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11044,241,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11048,241,25,64]),types.vector(["bootstrap2012/bootstrap-teachpack",11138,242,25,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11043,241,20,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11044,241,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11049,241,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11052,241,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11058,241,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",11064,241,41,32]),types.vector(["bootstrap2012/bootstrap-teachpack",11097,241,74,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11057,241,34,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11058,241,35,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11065,241,42,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11076,241,53,15]),types.vector(["bootstrap2012/bootstrap-teachpack",11092,241,69,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11064,241,41,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11065,241,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11077,241,54,9]),types.vector(["bootstrap2012/bootstrap-teachpack",11087,241,64,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11089,241,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11076,241,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11077,241,54,9])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11139,242,26,7]),types.vector(["bootstrap2012/bootstrap-teachpack",11147,242,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11138,242,25,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11139,242,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11148,242,35,4]),types.vector(["bootstrap2012/bootstrap-teachpack",11153,242,40,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11147,242,34,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11148,242,35,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10717,235,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10720,235,28,5]),types.vector(["bootstrap2012/bootstrap-teachpack",10726,235,34,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10734,235,42,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10767,236,25,3]),types.vector(["bootstrap2012/bootstrap-teachpack",10771,236,29,126]),types.vector(["bootstrap2012/bootstrap-teachpack",10927,238,29,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10766,236,24,167])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10767,236,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10772,236,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10775,236,33,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,3,4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10779,236,37,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10783,236,41,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10788,236,46,9]),types.vector(["bootstrap2012/bootstrap-teachpack",10798,236,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10783,236,41,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10802,236,60,3]),types.vector(["bootstrap2012/bootstrap-teachpack",10806,236,64,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10802,236,60,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10807,236,65,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10815,236,73,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10817,236,75,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10806,236,64,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10869,237,41,6]),types.vector(["bootstrap2012/bootstrap-teachpack",10876,237,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10868,237,40,10])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10880,237,52,5]),types.vector(["bootstrap2012/bootstrap-teachpack",10886,237,58,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10888,237,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10879,237,51,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10880,237,52,5])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10542,232,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10545,232,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10547,232,26,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10557,232,36,5]),types.vector(["bootstrap2012/bootstrap-teachpack",10563,232,42,22]),types.vector(["bootstrap2012/bootstrap-teachpack",10586,232,65,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10556,232,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10557,232,36,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10564,232,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10567,232,46,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10571,232,50,8]),types.vector(["bootstrap2012/bootstrap-teachpack",10580,232,59,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10582,232,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10570,232,49,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10330,228,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10333,228,25,2]),types.vector(["bootstrap2012/bootstrap-teachpack",10336,228,28,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10341,228,33,9]),types.vector(["bootstrap2012/bootstrap-teachpack",10351,228,43,12]),types.vector(["bootstrap2012/bootstrap-teachpack",10364,228,56,12]),types.vector(["bootstrap2012/bootstrap-teachpack",10421,229,43,12]),types.vector(["bootstrap2012/bootstrap-teachpack",10434,229,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10340,228,32,107])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10352,228,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10360,228,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10351,228,43,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10352,228,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10365,228,57,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10373,228,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10364,228,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10365,228,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10422,229,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10430,229,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10421,229,43,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10422,229,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10435,229,57,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10443,229,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10434,229,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10435,229,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10137,225,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10141,225,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10143,225,29,28]),types.vector(["bootstrap2012/bootstrap-teachpack",10172,225,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10141,225,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10144,225,30,15]),types.vector(["bootstrap2012/bootstrap-teachpack",10160,225,46,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10143,225,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10144,225,30,15])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10203,226,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10206,226,30,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10210,226,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",10221,226,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10209,226,33,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10222,226,46,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10230,226,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10221,226,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10222,226,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10262,227,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10265,227,30,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10269,227,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",10280,227,45,11]),types.vector(["bootstrap2012/bootstrap-teachpack",10292,227,57,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10268,227,33,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10281,227,46,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10289,227,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10280,227,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10281,227,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10293,227,58,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10301,227,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10292,227,57,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10293,227,58,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9794,220,13,6]),types.vector(["bootstrap2012/bootstrap-teachpack",9802,220,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9804,220,23,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9808,220,27,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9861,221,27,204]),types.vector(["bootstrap2012/bootstrap-teachpack",10093,224,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9807,220,26,304])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9808,220,27,10])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9862,221,28,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9866,221,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9868,221,34,32]),types.vector(["bootstrap2012/bootstrap-teachpack",9901,221,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9866,221,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9869,221,35,15]),types.vector(["bootstrap2012/bootstrap-teachpack",9885,221,51,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9868,221,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9869,221,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9937,222,32,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9947,222,42,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9959,222,54,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9936,222,31,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9937,222,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9948,222,43,7]),types.vector(["bootstrap2012/bootstrap-teachpack",9956,222,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9947,222,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9948,222,43,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9960,222,55,14]),types.vector(["bootstrap2012/bootstrap-teachpack",9975,222,70,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9987,222,82,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9959,222,54,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9976,222,71,7]),types.vector(["bootstrap2012/bootstrap-teachpack",9984,222,79,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9975,222,70,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9976,222,71,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10023,223,32,14]),types.vector(["bootstrap2012/bootstrap-teachpack",10038,223,47,11]),types.vector(["bootstrap2012/bootstrap-teachpack",10050,223,59,11]),types.vector(["bootstrap2012/bootstrap-teachpack",10062,223,71,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10022,223,31,42])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10039,223,48,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10047,223,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10038,223,47,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10039,223,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10051,223,60,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10059,223,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10050,223,59,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10051,223,60,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10094,224,28,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10108,224,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10093,224,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10094,224,28,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9721,218,31,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9733,218,43,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9720,218,30,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9721,218,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9661,217,27,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9673,217,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9660,217,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9661,217,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9605,216,27,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9617,216,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9604,216,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9605,216,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9434,213,20,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9445,213,31,36]),types.vector(["bootstrap2012/bootstrap-teachpack",9482,213,68,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9433,213,19,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9434,213,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9446,213,32,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9456,213,42,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9468,213,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9445,213,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9446,213,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9457,213,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9459,213,45,5]),types.vector(["bootstrap2012/bootstrap-teachpack",9465,213,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9456,213,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9457,213,43,1])},"rands":[{"$":"toplevel","depth":7,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9459,213,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9469,213,55,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9471,213,57,6]),types.vector(["bootstrap2012/bootstrap-teachpack",9478,213,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9468,213,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9469,213,55,1])},"rands":[{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9471,213,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16469,350,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",16469,350,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16474,350,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16492,352,5,10]),types.vector(["bootstrap2012/bootstrap-teachpack",16503,352,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":180,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16492,352,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16525,353,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",16533,353,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":194,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16525,353,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16553,354,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",16561,354,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16553,354,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16581,355,5,6]),types.vector(["bootstrap2012/bootstrap-teachpack",16588,355,12,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":214,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16581,355,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16607,356,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",16616,356,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16607,356,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16637,357,5,5]),types.vector(["bootstrap2012/bootstrap-teachpack",16643,357,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16637,357,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16665,358,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",16673,358,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":164,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16665,358,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16693,359,5,5]),types.vector(["bootstrap2012/bootstrap-teachpack",16699,359,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":202,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16693,359,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16717,360,5,5]),types.vector(["bootstrap2012/bootstrap-teachpack",16723,360,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16717,360,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16741,361,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",16749,361,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16741,361,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312]),types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17260,373,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",17260,373,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17272,373,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17274,373,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17276,373,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17290,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17295,374,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17297,374,10,41]),types.vector(["bootstrap2012/bootstrap-teachpack",17339,374,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17295,374,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17298,374,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",17302,374,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17297,374,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17298,374,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17303,374,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17305,374,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17321,374,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17302,374,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17303,374,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17306,374,19,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17318,374,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17305,374,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17306,374,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17322,374,35,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17334,374,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17321,374,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17322,374,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17290,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17358,375,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17360,375,10,41]),types.vector(["bootstrap2012/bootstrap-teachpack",17402,375,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17358,375,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17361,375,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",17365,375,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17360,375,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17361,375,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17366,375,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17368,375,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17384,375,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17365,375,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17366,375,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17369,375,19,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17381,375,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17368,375,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17369,375,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17385,375,35,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17397,375,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17384,375,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17385,375,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17290,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17421,376,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17423,376,10,41]),types.vector(["bootstrap2012/bootstrap-teachpack",17465,376,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17421,376,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17424,376,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",17428,376,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17423,376,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17424,376,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17429,376,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17431,376,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17447,376,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17428,376,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17429,376,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17432,376,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",17444,376,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17431,376,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17432,376,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17448,376,35,10]),types.vector(["bootstrap2012/bootstrap-teachpack",17460,376,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17447,376,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17448,376,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17290,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17484,377,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17486,377,10,41]),types.vector(["bootstrap2012/bootstrap-teachpack",17528,377,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17484,377,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17487,377,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",17491,377,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17486,377,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17487,377,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17492,377,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17494,377,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17510,377,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17491,377,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17492,377,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17495,377,19,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17507,377,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17494,377,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17495,377,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17511,377,35,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17523,377,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17510,377,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17511,377,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17633,381,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",17633,381,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",17641,381,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17643,381,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17649,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17654,382,8,6]),types.vector(["bootstrap2012/bootstrap-teachpack",17661,382,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17677,382,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17654,382,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17662,382,16,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17674,382,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17661,382,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17662,382,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17678,382,32,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17690,382,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17677,382,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17678,382,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17649,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17702,383,8,6]),types.vector(["bootstrap2012/bootstrap-teachpack",17709,383,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17725,383,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17702,383,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17710,383,16,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17722,383,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17709,383,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17710,383,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17726,383,32,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17738,383,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17725,383,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17726,383,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17649,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17750,384,8,6]),types.vector(["bootstrap2012/bootstrap-teachpack",17757,384,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17773,384,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17750,384,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17758,384,16,10]),types.vector(["bootstrap2012/bootstrap-teachpack",17770,384,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17757,384,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17758,384,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17774,384,32,10]),types.vector(["bootstrap2012/bootstrap-teachpack",17786,384,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17773,384,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17774,384,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17649,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17798,385,8,6]),types.vector(["bootstrap2012/bootstrap-teachpack",17805,385,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17821,385,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17798,385,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17806,385,16,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17818,385,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17805,385,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17806,385,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17822,385,32,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17834,385,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17821,385,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17822,385,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18386,398,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18386,398,9,10]),types.vector(["bootstrap2012/bootstrap-teachpack",18397,398,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18413,400,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18421,400,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18413,400,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18429,401,5,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18441,401,17,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18428,401,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18429,401,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59]),types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18474,406,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18474,406,9,15]),types.vector(["bootstrap2012/bootstrap-teachpack",18490,406,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18492,406,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18494,406,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18496,406,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18502,407,3,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18504,407,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18512,407,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18501,407,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18502,407,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18505,407,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18507,407,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18509,407,10,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18504,407,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18505,407,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18526,409,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18526,409,9,22]),types.vector(["bootstrap2012/bootstrap-teachpack",18549,409,32,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18556,409,39,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18560,409,43,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18566,409,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18576,410,2,345]),types.vector(["bootstrap2012/bootstrap-teachpack",18585,410,11,21]),types.vector(["bootstrap2012/bootstrap-teachpack",18619,411,11,21]),types.vector(["bootstrap2012/bootstrap-teachpack",18655,412,13,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18576,410,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18576,410,2,345]),types.vector(["bootstrap2012/bootstrap-teachpack",18583,410,9,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18617,411,9,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18651,412,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18712,413,5,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18724,414,5,39]),types.vector(["bootstrap2012/bootstrap-teachpack",18769,415,5,39]),types.vector(["bootstrap2012/bootstrap-teachpack",18814,416,5,49]),types.vector(["bootstrap2012/bootstrap-teachpack",18869,417,5,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18711,413,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18712,413,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18725,414,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18729,414,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18731,414,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18733,414,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18729,414,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18737,414,18,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18742,414,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18736,414,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18737,414,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18743,414,24,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18747,414,28,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18755,414,36,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18742,414,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18748,414,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18750,414,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18752,414,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18747,414,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18748,414,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18770,415,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18774,415,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18776,415,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18778,415,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18774,415,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18782,415,18,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18787,415,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18781,415,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18782,415,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18788,415,24,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18792,415,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18794,415,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18787,415,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18795,415,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18797,415,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18799,415,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18794,415,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18795,415,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18815,416,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18819,416,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18821,416,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18823,416,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18819,416,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18824,416,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18826,416,17,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18832,416,23,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18823,416,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18824,416,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18837,416,28,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18842,416,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18836,416,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18837,416,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18843,416,34,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18847,416,38,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18855,416,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18842,416,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18848,416,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18850,416,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18852,416,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18847,416,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18848,416,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18870,417,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18874,417,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18876,417,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18878,417,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18874,417,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18879,417,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18881,417,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18888,417,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18878,417,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18879,417,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18893,417,29,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18898,417,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18892,417,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18893,417,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18899,417,35,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18903,417,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18905,417,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18898,417,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18906,417,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18908,417,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18910,417,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18905,417,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18906,417,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18586,410,12,9]),types.vector(["bootstrap2012/bootstrap-teachpack",18596,410,22,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18600,410,26,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18585,410,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18586,410,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18620,411,12,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18626,411,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18619,411,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":221,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18620,411,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18627,411,19,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18629,411,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18633,411,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18626,411,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18627,411,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18656,412,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18664,412,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18666,412,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18670,412,28,15]),types.vector(["bootstrap2012/bootstrap-teachpack",18686,412,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18688,412,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18690,412,48,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18696,412,54,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18669,412,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18670,412,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18933,419,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18933,419,9,22]),types.vector(["bootstrap2012/bootstrap-teachpack",18956,419,32,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18963,419,39,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18969,419,45,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18976,419,52,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18984,419,60,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18992,419,68,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19004,419,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19017,420,2,973]),types.vector(["bootstrap2012/bootstrap-teachpack",19030,420,15,53]),types.vector(["bootstrap2012/bootstrap-teachpack",19099,421,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19126,422,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19017,420,2,973])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",19017,420,2,973]),types.vector(["bootstrap2012/bootstrap-teachpack",19024,420,9,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19094,421,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19121,422,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",19159,424,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19216,426,25,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19220,426,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19215,426,24,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19216,426,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19221,426,30,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19228,426,37,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19220,426,29,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":220,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19221,426,30,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19256,427,20,701]),types.vector(["bootstrap2012/bootstrap-teachpack",19266,427,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19256,427,20,701])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",19256,427,20,701]),types.vector(["bootstrap2012/bootstrap-teachpack",19263,427,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19334,429,25,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19339,429,30,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19345,429,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19333,429,24,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19334,429,25,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19346,429,37,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19350,429,41,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19345,429,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":233,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19346,429,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19389,430,31,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19393,430,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19388,430,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19389,430,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19394,430,36,8]),types.vector(["bootstrap2012/bootstrap-teachpack",19403,430,45,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19408,430,50,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19411,430,53,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19393,430,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":218,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19394,430,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19478,432,29,9]),types.vector(["bootstrap2012/bootstrap-teachpack",19488,432,39,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19493,432,44,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19496,432,47,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19477,432,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":216,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19478,432,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19529,433,29,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19534,433,34,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19539,433,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19528,433,28,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19529,433,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19540,433,40,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19545,433,45,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19548,433,48,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19539,433,39,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19540,433,40,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19584,434,29,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19589,434,34,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19630,435,34,291])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19583,434,28,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19584,434,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19631,435,35,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19638,435,42,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19686,436,42,234])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19630,435,34,291])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19631,435,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19687,436,43,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19694,436,50,127]),types.vector(["bootstrap2012/bootstrap-teachpack",19872,438,50,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19686,436,42,234])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":222,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19687,436,43,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",19695,436,51,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19703,436,59,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6,8,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19762,437,53,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19774,437,65,23]),types.vector(["bootstrap2012/bootstrap-teachpack",19798,437,89,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19810,437,101,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19761,437,52,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19762,437,53,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19775,437,66,10]),types.vector(["bootstrap2012/bootstrap-teachpack",19786,437,77,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19793,437,84,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19774,437,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19775,437,66,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19873,438,51,22]),types.vector(["bootstrap2012/bootstrap-teachpack",19896,438,74,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19903,438,81,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19906,438,84,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19912,438,90,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19872,438,50,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19873,438,51,22])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19382,430,24,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19382,430,24,542])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19382,430,24,542])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19950,439,25,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19949,439,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19267,427,31,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19271,427,35,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19266,427,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":235,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19267,427,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19209,426,18,749])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19209,426,18,749])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19209,426,18,749])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19971,440,9,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19970,440,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19031,420,16,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19036,420,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19030,420,15,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19031,420,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19037,420,22,15]),types.vector(["bootstrap2012/bootstrap-teachpack",19053,420,38,7]),types.vector(["bootstrap2012/bootstrap-teachpack",19061,420,46,7]),types.vector(["bootstrap2012/bootstrap-teachpack",19069,420,54,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19075,420,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19036,420,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19037,420,22,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19100,421,15,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19099,421,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":203,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19100,421,15,9])},"rands":[]}}},{"$":"constant","value":types.EMPTY}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20002,443,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20002,443,9,16]),types.vector(["bootstrap2012/bootstrap-teachpack",20019,443,26,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20023,443,30,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20031,443,38,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20039,443,46,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20052,443,59,17]),types.vector(["bootstrap2012/bootstrap-teachpack",20070,443,77,9]),types.vector(["bootstrap2012/bootstrap-teachpack",20080,443,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20100,444,9,42]),types.vector(["bootstrap2012/bootstrap-teachpack",20103,444,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20100,444,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20100,444,9,42]),types.vector(["bootstrap2012/bootstrap-teachpack",20101,444,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20152,445,9,25]),types.vector(["bootstrap2012/bootstrap-teachpack",20159,445,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20152,445,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20152,445,9,25]),types.vector(["bootstrap2012/bootstrap-teachpack",20153,445,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20187,446,9,27]),types.vector(["bootstrap2012/bootstrap-teachpack",20195,446,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20187,446,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20187,446,9,27]),types.vector(["bootstrap2012/bootstrap-teachpack",20188,446,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20224,447,9,142]),types.vector(["bootstrap2012/bootstrap-teachpack",20227,447,12,138])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20224,447,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20224,447,9,142]),types.vector(["bootstrap2012/bootstrap-teachpack",20225,447,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20376,450,9,34]),types.vector(["bootstrap2012/bootstrap-teachpack",20379,450,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20376,450,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20376,450,9,34]),types.vector(["bootstrap2012/bootstrap-teachpack",20377,450,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20436,452,13,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20440,452,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20435,452,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20436,452,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20441,452,18,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20449,452,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20451,452,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20440,452,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20441,452,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20464,453,9,8]),types.vector(["bootstrap2012/bootstrap-teachpack",20473,453,18,36]),types.vector(["bootstrap2012/bootstrap-teachpack",20528,454,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20463,453,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":219,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20464,453,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20474,453,19,6]),types.vector(["bootstrap2012/bootstrap-teachpack",20482,453,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20488,453,33,11]),types.vector(["bootstrap2012/bootstrap-teachpack",20500,453,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20502,453,47,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20506,453,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20487,453,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20488,453,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20529,454,19,22]),types.vector(["bootstrap2012/bootstrap-teachpack",20552,454,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20554,454,44,5]),types.vector(["bootstrap2012/bootstrap-teachpack",20560,454,50,6]),types.vector(["bootstrap2012/bootstrap-teachpack",20567,454,57,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20575,454,65,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20583,454,73,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20585,454,75,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20528,454,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20529,454,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20429,452,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20429,452,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20429,452,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20605,455,7,18]),types.vector(["bootstrap2012/bootstrap-teachpack",20624,455,26,16]),types.vector(["bootstrap2012/bootstrap-teachpack",20641,455,43,5]),types.vector(["bootstrap2012/bootstrap-teachpack",20647,455,49,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20604,455,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":231,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20605,455,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20625,455,27,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20638,455,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20624,455,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20625,455,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20380,450,13,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20391,450,24,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20379,450,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20380,450,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20228,447,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20262,448,17,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20273,448,28,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20261,448,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20262,448,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20304,449,17,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20315,449,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20317,449,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20303,449,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20304,449,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20318,449,31,15]),types.vector(["bootstrap2012/bootstrap-teachpack",20334,449,47,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20342,449,55,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20350,449,63,5]),types.vector(["bootstrap2012/bootstrap-teachpack",20356,449,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20317,449,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20318,449,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20196,446,18,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20209,446,31,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20195,446,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20196,446,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20160,445,17,11]),types.vector(["bootstrap2012/bootstrap-teachpack",20172,445,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20159,445,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20160,445,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20104,444,13,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20117,444,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20103,444,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20104,444,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20118,444,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",20136,444,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20117,444,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20118,444,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20668,457,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20668,457,9,23]),types.vector(["bootstrap2012/bootstrap-teachpack",20692,457,33,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20696,457,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20710,458,3,16]),types.vector(["bootstrap2012/bootstrap-teachpack",20727,458,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20731,458,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20733,458,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20735,458,28,2]),types.vector(["bootstrap2012/bootstrap-teachpack",20738,458,31,20]),types.vector(["bootstrap2012/bootstrap-teachpack",20759,458,52,9]),types.vector(["bootstrap2012/bootstrap-teachpack",20769,458,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20709,458,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20710,458,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20739,458,32,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20750,458,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20752,458,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20754,458,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20756,458,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20738,458,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":205,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20739,458,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20782,459,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20782,459,9,24]),types.vector(["bootstrap2012/bootstrap-teachpack",20807,459,34,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20811,459,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20824,460,2,442]),types.vector(["bootstrap2012/bootstrap-teachpack",20836,460,14,20]),types.vector(["bootstrap2012/bootstrap-teachpack",20879,461,21,2]),types.vector(["bootstrap2012/bootstrap-teachpack",20900,462,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20916,463,13,23]),types.vector(["bootstrap2012/bootstrap-teachpack",20954,464,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20824,460,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20824,460,2,442]),types.vector(["bootstrap2012/bootstrap-teachpack",20831,460,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",20867,461,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",20892,462,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20912,463,9,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20950,464,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20986,465,5,16]),types.vector(["bootstrap2012/bootstrap-teachpack",21009,466,5,207]),types.vector(["bootstrap2012/bootstrap-teachpack",21222,471,5,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21226,471,9,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21230,471,13,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21242,471,25,4]),types.vector(["bootstrap2012/bootstrap-teachpack",21247,471,30,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21257,471,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20985,465,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20986,465,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21010,466,6,16]),types.vector(["bootstrap2012/bootstrap-teachpack",21033,467,6,135]),types.vector(["bootstrap2012/bootstrap-teachpack",21175,470,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21177,470,8,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21181,470,12,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21193,470,24,4]),types.vector(["bootstrap2012/bootstrap-teachpack",21198,470,29,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21208,470,39,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21009,466,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21010,466,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21034,467,7,16]),types.vector(["bootstrap2012/bootstrap-teachpack",21058,468,7,61]),types.vector(["bootstrap2012/bootstrap-teachpack",21127,469,7,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21131,469,11,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21133,469,13,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21145,469,25,4]),types.vector(["bootstrap2012/bootstrap-teachpack",21150,469,30,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21160,469,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21033,467,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21034,467,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21059,468,8,16]),types.vector(["bootstrap2012/bootstrap-teachpack",21076,468,25,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21080,468,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21082,468,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21084,468,33,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21096,468,45,4]),types.vector(["bootstrap2012/bootstrap-teachpack",21101,468,50,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21111,468,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21058,468,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21059,468,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20837,460,15,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20848,460,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20850,460,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20852,460,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20854,460,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20836,460,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":205,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20837,460,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20917,463,14,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20919,463,16,17]),types.vector(["bootstrap2012/bootstrap-teachpack",20937,463,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20916,463,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20917,463,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20920,463,17,11]),types.vector(["bootstrap2012/bootstrap-teachpack",20932,463,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20919,463,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20920,463,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20955,464,14,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20957,464,16,18]),types.vector(["bootstrap2012/bootstrap-teachpack",20976,464,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20954,464,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20955,464,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20958,464,17,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20971,464,30,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20957,464,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20958,464,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21435,476,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",21435,476,9,13]),types.vector(["bootstrap2012/bootstrap-teachpack",21449,476,23,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21453,476,27,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21466,476,40,17]),types.vector(["bootstrap2012/bootstrap-teachpack",21484,476,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21497,477,2,299]),types.vector(["bootstrap2012/bootstrap-teachpack",21508,477,13,25]),types.vector(["bootstrap2012/bootstrap-teachpack",21548,478,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21497,477,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",21497,477,2,299]),types.vector(["bootstrap2012/bootstrap-teachpack",21504,477,9,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21544,478,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21586,479,5,18]),types.vector(["bootstrap2012/bootstrap-teachpack",21610,480,5,137]),types.vector(["bootstrap2012/bootstrap-teachpack",21753,485,5,17]),types.vector(["bootstrap2012/bootstrap-teachpack",21776,486,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21585,479,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":231,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21586,479,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21611,480,6,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21615,480,10,97]),types.vector(["bootstrap2012/bootstrap-teachpack",21723,484,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21610,480,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21611,480,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",21616,480,11,6]),types.vector(["bootstrap2012/bootstrap-teachpack",21624,480,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21640,481,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21644,481,17,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21656,481,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21658,481,31,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21662,481,35,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21644,481,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21724,484,11,17]),types.vector(["bootstrap2012/bootstrap-teachpack",21742,484,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21723,484,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21724,484,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21754,485,6,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21766,485,18,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21753,485,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21754,485,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21777,486,6,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21790,486,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21776,486,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21777,486,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21509,477,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",21520,477,25,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21508,477,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21509,477,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21549,478,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",21560,478,25,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21548,478,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21549,478,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21919,489,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",21919,489,9,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21932,489,22,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21936,489,26,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21949,489,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21963,490,3,13]),types.vector(["bootstrap2012/bootstrap-teachpack",21977,490,17,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21981,490,21,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21994,490,34,20]),types.vector(["bootstrap2012/bootstrap-teachpack",22015,490,55,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21962,490,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21963,490,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21995,490,35,10]),types.vector(["bootstrap2012/bootstrap-teachpack",22006,490,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22008,490,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22010,490,50,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22012,490,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21994,490,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":205,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21995,490,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22162,494,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22162,494,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",22174,494,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22182,495,3,24]),types.vector(["bootstrap2012/bootstrap-teachpack",22207,495,28,16]),types.vector(["bootstrap2012/bootstrap-teachpack",22224,495,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22181,495,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22182,495,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22208,495,29,10]),types.vector(["bootstrap2012/bootstrap-teachpack",22219,495,40,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22207,495,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":225,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22208,495,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22281,498,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22281,498,9,12]),types.vector(["bootstrap2012/bootstrap-teachpack",22294,498,22,3]),types.vector(["bootstrap2012/bootstrap-teachpack",22298,498,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22307,499,3,10]),types.vector(["bootstrap2012/bootstrap-teachpack",22318,499,14,3]),types.vector(["bootstrap2012/bootstrap-teachpack",22322,499,18,27]),types.vector(["bootstrap2012/bootstrap-teachpack",22350,499,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22306,499,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22307,499,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22323,499,19,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22337,499,33,4]),types.vector(["bootstrap2012/bootstrap-teachpack",22342,499,38,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22322,499,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22323,499,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22351,499,47,11]),types.vector(["bootstrap2012/bootstrap-teachpack",22363,499,59,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22350,499,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22351,499,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22464,506,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22464,506,9,15]),types.vector(["bootstrap2012/bootstrap-teachpack",22480,506,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22486,507,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22620,511,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22620,511,9,14]),types.vector(["bootstrap2012/bootstrap-teachpack",22635,511,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22641,512,3,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22655,512,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22640,512,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22641,512,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22656,512,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",22672,512,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22655,512,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22656,512,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22765,518,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22765,518,9,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22779,518,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22785,519,3,4]),types.vector(["bootstrap2012/bootstrap-teachpack",22790,519,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22792,519,10,2]),types.vector(["bootstrap2012/bootstrap-teachpack",22795,519,13,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22784,519,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22785,519,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22890,523,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22890,523,9,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22904,523,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22910,524,3,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22924,524,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22909,524,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22910,524,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22925,524,18,14]),types.vector(["bootstrap2012/bootstrap-teachpack",22940,524,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22924,524,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":192,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22925,524,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23111,530,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",23111,530,9,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23122,530,20,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23133,530,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23135,530,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23137,530,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23152,531,3,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23163,531,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23174,531,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23176,531,27,7]),types.vector(["bootstrap2012/bootstrap-teachpack",23184,531,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23151,531,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23152,531,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23177,531,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23179,531,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23181,531,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23176,531,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23177,531,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23364,536,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",23364,536,9,9]),types.vector(["bootstrap2012/bootstrap-teachpack",23374,536,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23385,536,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23387,536,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23389,536,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23404,537,3,11]),types.vector(["bootstrap2012/bootstrap-teachpack",23416,537,15,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23427,537,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23429,537,28,31]),types.vector(["bootstrap2012/bootstrap-teachpack",23461,537,60,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23403,537,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23404,537,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23430,537,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23432,537,31,25]),types.vector(["bootstrap2012/bootstrap-teachpack",23458,537,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23429,537,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23430,537,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23433,537,32,12]),types.vector(["bootstrap2012/bootstrap-teachpack",23446,537,45,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23432,537,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23433,537,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23548,540,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",23548,540,9,2]),types.vector(["bootstrap2012/bootstrap-teachpack",23551,540,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23555,540,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23557,540,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23559,540,20,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23554,540,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23555,540,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23781,545,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",23781,545,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",23786,545,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23790,545,18,3]),types.vector(["bootstrap2012/bootstrap-teachpack",23794,545,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23789,545,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23790,545,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23795,545,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23797,545,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23799,545,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23794,545,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23795,545,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23800,545,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23802,545,30,2]),types.vector(["bootstrap2012/bootstrap-teachpack",23805,545,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23799,545,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23800,545,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23802,545,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24033,550,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24033,550,9,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24040,550,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24044,550,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24048,550,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24043,550,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24044,550,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24049,550,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24051,550,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24053,550,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24048,550,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24049,550,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24054,550,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24056,550,32,2]),types.vector(["bootstrap2012/bootstrap-teachpack",24059,550,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24053,550,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24054,550,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24056,550,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24285,555,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24285,555,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24293,555,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24297,555,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24301,555,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24296,555,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":165,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24297,555,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24302,555,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24304,555,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24306,555,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24301,555,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24302,555,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24307,555,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24309,555,33,2]),types.vector(["bootstrap2012/bootstrap-teachpack",24312,555,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24306,555,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24307,555,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24309,555,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24395,559,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24395,559,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24400,559,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24408,560,3,8]),types.vector(["bootstrap2012/bootstrap-teachpack",24417,560,12,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24421,560,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24407,560,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":207,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24408,560,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24422,560,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24429,560,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24421,560,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24422,560,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24430,560,25,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24437,560,32,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24429,560,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24430,560,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24552,564,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24552,564,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24560,564,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24562,564,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24569,565,3,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24579,566,3,29]),types.vector(["bootstrap2012/bootstrap-teachpack",24612,567,3,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24568,565,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24569,565,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24580,566,4,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24588,566,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24594,566,18,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24601,566,25,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24605,566,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24593,566,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":200,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24594,566,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24626,569,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24626,569,9,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24630,569,13,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24632,569,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24638,570,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24642,570,7,5]),types.vector(["bootstrap2012/bootstrap-teachpack",24648,570,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":202,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24642,570,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24652,570,17,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24660,570,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24662,570,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24651,570,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24652,570,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24666,570,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24670,570,35,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24674,570,39,12]),types.vector(["bootstrap2012/bootstrap-teachpack",24687,570,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":223,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24670,570,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24675,570,40,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24682,570,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24684,570,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24674,570,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":200,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24675,570,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24710,572,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24710,572,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24718,572,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24726,573,3,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24734,573,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24738,573,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24725,573,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24726,573,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24739,573,16,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24749,573,26,17]),types.vector(["bootstrap2012/bootstrap-teachpack",24767,573,44,18]),types.vector(["bootstrap2012/bootstrap-teachpack",24786,573,63,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24794,573,71,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24738,573,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":176,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24739,573,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24750,573,27,11]),types.vector(["bootstrap2012/bootstrap-teachpack",24762,573,39,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24749,573,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24750,573,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24768,573,45,12]),types.vector(["bootstrap2012/bootstrap-teachpack",24781,573,58,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24767,573,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24768,573,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24814,575,9,7])}],"body":{"$":"lam","name":types.symbol("flatten"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24814,575,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24822,575,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24839,577,6,5]),types.vector(["bootstrap2012/bootstrap-teachpack",24845,577,12,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24839,577,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24854,578,6,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24861,578,13,17]),types.vector(["bootstrap2012/bootstrap-teachpack",24892,579,13,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24853,578,5,57])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24854,578,6,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24862,578,14,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24870,578,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24861,578,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24862,578,14,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24871,578,23,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24875,578,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24870,578,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":235,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24871,578,23,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24893,579,14,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24901,579,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24892,579,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24893,579,14,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24902,579,23,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24906,579,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24901,579,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":233,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24902,579,23,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24918,580,6,5]),types.vector(["bootstrap2012/bootstrap-teachpack",24924,580,12,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":195,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24918,580,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])}]}}},"then":{"$":"constant","value":types.EMPTY},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24953,583,6,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24958,583,11,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24952,583,5,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24953,583,6,4])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135]),types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])}]}}}}}}}}]}}, 'provides': ["cosine","sine","subset?","tangent","type","sq","string->image","make-game","pick","play","put-image","number->image","overlay-at","in?","boolean->image","clipart/url","color->alpha","boolean->string","*player-y*","*score*","*player-x*"]}; +window.COLLECTIONS["bootstrap2012/bootstrap-teachpack"] = { 'name': "bootstrap2012/bootstrap-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"set!"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"update-danger*"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"onscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"update"},{"$":"global-bucket","value":"enemies"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"dangerImgs"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"projectileImg"},{"$":"global-bucket","value":"update-projectile*"},{"$":"global-bucket","value":"update-danger"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"hitables"},{"$":"global-bucket","value":"update-projectile"},{"$":"global-bucket","value":"shootables"},{"$":"global-bucket","value":"reset-chars"},{"$":"global-bucket","value":"hit-by?"},{"$":"global-bucket","value":"timer"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"projectiles"},{"$":"global-bucket","value":"dangers"},{"$":"global-bucket","value":"tap"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"next-posn"},{"$":"global-bucket","value":"next-x"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"screen-point"},{"$":"global-bucket","value":"player-point"},{"$":"global-bucket","value":"py"},{"$":"global-bucket","value":"color"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"cy"},{"$":"global-bucket","value":"cx"},{"$":"global-bucket","value":"px"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world-with-shots"},{"$":"global-bucket","value":"world-with-timer"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-with-targets"},{"$":"global-bucket","value":"world-with-player"},{"$":"global-bucket","value":"world-with-score"},{"$":"global-bucket","value":"world-with-dangers"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-shots"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-dangers"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"play"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"fit-image-to"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"make-game"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"flatten"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"cull"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"boolean->image"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"add-informative-triangle"},{"$":"global-bucket","value":"animate/proc"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"TOLERANCE"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"LOSS-SCORE"},{"$":"global-bucket","value":"RESTING-TOP-DOWN-ORIENTATION"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"*player-x*"},{"$":"global-bucket","value":"*score*"},{"$":"global-bucket","value":"*target-increment*"},{"$":"global-bucket","value":"-TOLERANCE"},{"$":"global-bucket","value":"*player-y*"},{"$":"global-bucket","value":"*distance*"},{"$":"global-bucket","value":"*line-length*"},{"$":"global-bucket","value":"*distances-color*"},{"$":"global-bucket","value":"*danger-increment*"},{"$":"module-variable","sym":types.symbol("line"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("stop-when"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text/font"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("round"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("scale"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("radial-star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("ormap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tap"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("null?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("crop"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("inexact->exact"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("apply"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",193,9,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",212,10,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",232,11,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",264,12,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",277,12,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",281,12,25,7]),types.vector(["bootstrap2012/bootstrap-teachpack",276,12,20,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",276,12,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",277,12,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",299,13,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",311,13,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",315,13,24,40]),types.vector(["bootstrap2012/bootstrap-teachpack",310,13,19,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",310,13,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",311,13,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",316,13,25,9]),types.vector(["bootstrap2012/bootstrap-teachpack",326,13,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",332,13,41,6]),types.vector(["bootstrap2012/bootstrap-teachpack",339,13,48,7]),types.vector(["bootstrap2012/bootstrap-teachpack",347,13,56,7]),types.vector(["bootstrap2012/bootstrap-teachpack",315,13,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",315,13,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":176,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",316,13,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",326,13,35,5])},{"$":"toplevel","depth":5,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",332,13,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",367,14,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",367,14,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",377,14,19,6]),types.vector(["bootstrap2012/bootstrap-teachpack",384,14,26,3]),types.vector(["bootstrap2012/bootstrap-teachpack",376,14,18,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",376,14,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",377,14,19,6])},"rands":[{"$":"constant","value":200}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",398,15,8,18])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",429,16,8,18])}],"body":{"$":"constant","value":-50}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",461,17,8,10])}],"body":{"$":"constant","value":0}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",522,20,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",531,20,17,3]),types.vector(["bootstrap2012/bootstrap-teachpack",535,20,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",530,20,16,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",530,20,16,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",531,20,17,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",547,21,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",559,21,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",563,21,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",558,21,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",558,21,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",559,21,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",575,22,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",587,22,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",591,22,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",586,22,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",586,22,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",587,22,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",626,25,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",641,25,23,3]),types.vector(["bootstrap2012/bootstrap-teachpack",645,25,27,15]),types.vector(["bootstrap2012/bootstrap-teachpack",640,25,22,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",640,25,22,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",641,25,23,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",646,25,28,6]),types.vector(["bootstrap2012/bootstrap-teachpack",653,25,35,1]),types.vector(["bootstrap2012/bootstrap-teachpack",655,25,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",671,26,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",683,26,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",687,26,24,23]),types.vector(["bootstrap2012/bootstrap-teachpack",682,26,19,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",682,26,19,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",683,26,20,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",688,26,25,6]),types.vector(["bootstrap2012/bootstrap-teachpack",695,26,32,2]),types.vector(["bootstrap2012/bootstrap-teachpack",698,26,35,2]),types.vector(["bootstrap2012/bootstrap-teachpack",701,26,38,2]),types.vector(["bootstrap2012/bootstrap-teachpack",704,26,41,2])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",721,27,8,17])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",740,27,27,3]),types.vector(["bootstrap2012/bootstrap-teachpack",744,27,31,2]),types.vector(["bootstrap2012/bootstrap-teachpack",739,27,26,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",739,27,26,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",740,27,27,3])},"rands":[{"$":"constant","value":""}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",796,30,8,9])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",818,31,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",830,31,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",832,31,22,9]),types.vector(["bootstrap2012/bootstrap-teachpack",829,31,19,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",829,31,19,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",830,31,20,1])},"rands":[{"$":"toplevel","depth":1,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",832,31,22,9])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",913,34,8,28])}],"body":{"$":"constant","value":40}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1086,38,9,12])}],"body":{"$":"lam","name":types.symbol("fit-image-to"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",1086,38,9,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1099,38,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1101,38,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1103,38,26,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1131,40,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1133,40,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1156,40,33,35]),types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1131,40,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1134,40,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1146,40,23,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1133,40,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1133,40,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1134,40,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1157,40,34,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1159,40,36,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1167,40,44,23]),types.vector(["bootstrap2012/bootstrap-teachpack",1156,40,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1156,40,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1157,40,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1160,40,37,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1162,40,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1164,40,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1159,40,36,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1159,40,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1160,40,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1168,40,45,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1181,40,58,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1167,40,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1167,40,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1168,40,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1130,40,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1201,41,8,5]),types.vector(["bootstrap2012/bootstrap-teachpack",1207,41,14,28]),types.vector(["bootstrap2012/bootstrap-teachpack",1236,41,43,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1200,41,7,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1200,41,7,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1201,41,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1208,41,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1210,41,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1212,41,19,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1207,41,14,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1207,41,14,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1208,41,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1213,41,20,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1225,41,32,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1212,41,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1212,41,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1213,41,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1255,42,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1257,42,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1280,42,33,35]),types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1255,42,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1258,42,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1270,42,23,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1257,42,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1257,42,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1258,42,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1281,42,34,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1283,42,36,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1291,42,44,23]),types.vector(["bootstrap2012/bootstrap-teachpack",1280,42,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1280,42,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1281,42,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1284,42,37,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1286,42,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1288,42,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1283,42,36,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1283,42,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1284,42,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1292,42,45,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1305,42,58,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1291,42,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1291,42,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1292,42,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1254,42,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1326,43,8,5]),types.vector(["bootstrap2012/bootstrap-teachpack",1332,43,14,41]),types.vector(["bootstrap2012/bootstrap-teachpack",1388,44,14,79]),types.vector(["bootstrap2012/bootstrap-teachpack",1325,43,7,143])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1325,43,7,143])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1326,43,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1333,43,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1335,43,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1337,43,19,35]),types.vector(["bootstrap2012/bootstrap-teachpack",1332,43,14,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1332,43,14,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1333,43,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1338,43,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1340,43,22,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1348,43,30,23]),types.vector(["bootstrap2012/bootstrap-teachpack",1337,43,19,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1337,43,19,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1338,43,20,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1341,43,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1343,43,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1345,43,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1340,43,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1340,43,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1341,43,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1349,43,31,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1362,43,44,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1348,43,30,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1348,43,30,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1349,43,31,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1389,44,15,4]),types.vector(["bootstrap2012/bootstrap-teachpack",1394,44,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1396,44,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1398,44,24,35]),types.vector(["bootstrap2012/bootstrap-teachpack",1434,44,60,23]),types.vector(["bootstrap2012/bootstrap-teachpack",1458,44,84,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1388,44,14,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1388,44,14,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":209,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1389,44,15,4])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1399,44,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1401,44,27,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1409,44,35,23]),types.vector(["bootstrap2012/bootstrap-teachpack",1398,44,24,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1398,44,24,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1399,44,25,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1402,44,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1404,44,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1406,44,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1401,44,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1401,44,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1402,44,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1410,44,36,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1423,44,49,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1409,44,35,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1409,44,35,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1410,44,36,12])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1435,44,61,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1448,44,74,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1434,44,60,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1434,44,60,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1435,44,61,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1478,45,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1480,45,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1503,45,33,35]),types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1478,45,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1481,45,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1493,45,23,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1480,45,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1480,45,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1481,45,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1504,45,34,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1506,45,36,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1514,45,44,23]),types.vector(["bootstrap2012/bootstrap-teachpack",1503,45,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1503,45,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1504,45,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1507,45,37,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1509,45,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1511,45,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1506,45,36,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1506,45,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1507,45,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1515,45,45,12]),types.vector(["bootstrap2012/bootstrap-teachpack",1528,45,58,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1514,45,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1514,45,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1515,45,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1477,45,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1548,46,8,5]),types.vector(["bootstrap2012/bootstrap-teachpack",1554,46,14,28]),types.vector(["bootstrap2012/bootstrap-teachpack",1597,47,14,77]),types.vector(["bootstrap2012/bootstrap-teachpack",1547,46,7,128])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1547,46,7,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1548,46,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1555,46,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1557,46,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1559,46,19,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1554,46,14,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1554,46,14,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1555,46,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1560,46,20,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1572,46,32,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1559,46,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1559,46,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1560,46,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1598,47,15,4]),types.vector(["bootstrap2012/bootstrap-teachpack",1603,47,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1605,47,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1607,47,24,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1630,47,47,34]),types.vector(["bootstrap2012/bootstrap-teachpack",1665,47,82,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1597,47,14,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1597,47,14,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":209,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1598,47,15,4])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1608,47,25,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1620,47,37,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1607,47,24,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1607,47,24,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1608,47,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1631,47,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1633,47,50,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1641,47,58,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1630,47,47,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1630,47,47,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1631,47,48,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1634,47,51,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1636,47,53,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1638,47,55,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1633,47,50,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1633,47,50,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1634,47,51,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1642,47,59,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1654,47,71,8]),types.vector(["bootstrap2012/bootstrap-teachpack",1641,47,58,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1641,47,58,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1642,47,59,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567]),types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567]),types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1117,39,4,567])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1793,52,9,4])}],"body":{"$":"lam","name":types.symbol("cull"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",1793,52,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",1798,52,14,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1809,53,3,6]),types.vector(["bootstrap2012/bootstrap-teachpack",1816,53,10,126]),types.vector(["bootstrap2012/bootstrap-teachpack",1943,54,70,6]),types.vector(["bootstrap2012/bootstrap-teachpack",1808,53,2,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1808,53,2,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":222,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1809,53,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",1817,53,11,6]),types.vector(["bootstrap2012/bootstrap-teachpack",1825,53,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1834,53,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1836,53,30,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1848,53,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1834,53,28,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1837,53,31,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1845,53,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1836,53,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1836,53,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1837,53,31,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1833,53,27,17])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1852,53,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1854,53,48,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1866,53,60,5]),types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1852,53,46,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1855,53,49,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1863,53,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1854,53,48,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1854,53,48,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1855,53,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1866,53,60,5])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1851,53,45,21])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1901,54,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1903,54,30,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1915,54,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1901,54,28,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1904,54,31,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1912,54,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1903,54,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1903,54,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1904,54,31,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1900,54,27,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1919,54,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1921,54,48,11]),types.vector(["bootstrap2012/bootstrap-teachpack",1933,54,60,6]),types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1919,54,46,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",1922,54,49,7]),types.vector(["bootstrap2012/bootstrap-teachpack",1930,54,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",1921,54,48,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1921,54,48,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1922,54,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",1933,54,60,6])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",1918,54,45,22])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2095,61,15,5])},{"$":"toplevel","depth":0,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2080,61,0,36])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2235,65,15,5])},{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":8},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("dangers")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("shots")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2220,65,0,73])},{"$":"constant","value":7},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2334,68,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2343,68,17,7]),types.vector(["bootstrap2012/bootstrap-teachpack",2351,68,25,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2358,68,32,10]),types.vector(["bootstrap2012/bootstrap-teachpack",2342,68,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2342,68,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2343,68,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2351,68,25,6])},{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2358,68,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2379,69,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2388,69,17,7]),types.vector(["bootstrap2012/bootstrap-teachpack",2396,69,25,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2403,69,32,10]),types.vector(["bootstrap2012/bootstrap-teachpack",2387,69,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2387,69,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2388,69,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2396,69,25,6])},{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2403,69,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2471,72,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",2471,72,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2483,72,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2490,72,28,9]),types.vector(["bootstrap2012/bootstrap-teachpack",2500,72,38,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2514,72,52,28]),types.vector(["bootstrap2012/bootstrap-teachpack",2489,72,27,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2489,72,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2490,72,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2501,72,39,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2508,72,46,4]),types.vector(["bootstrap2012/bootstrap-teachpack",2500,72,38,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2500,72,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2501,72,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2515,72,53,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2517,72,55,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2524,72,62,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2514,72,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2514,72,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2515,72,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2517,72,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2525,72,63,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2527,72,65,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2524,72,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2524,72,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2525,72,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2528,72,66,6]),types.vector(["bootstrap2012/bootstrap-teachpack",2535,72,73,4]),types.vector(["bootstrap2012/bootstrap-teachpack",2527,72,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2527,72,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2528,72,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2576,75,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-dangers"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",2576,75,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",2595,75,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2597,75,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2601,75,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",2612,75,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2630,75,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2646,75,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2664,75,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",2681,75,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",2694,75,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2710,75,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2726,75,159,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2600,75,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2600,75,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2601,75,34,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2631,75,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2643,75,76,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2630,75,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2630,75,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2631,75,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2647,75,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2661,75,94,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2646,75,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2646,75,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2647,75,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2665,75,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",2678,75,111,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2664,75,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2664,75,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2665,75,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2682,75,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",2691,75,124,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2681,75,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2681,75,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2682,75,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2695,75,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2707,75,140,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2694,75,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2694,75,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2695,75,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2711,75,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2723,75,156,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2710,75,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2710,75,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2711,75,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2727,75,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2739,75,172,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2726,75,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2726,75,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2727,75,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2753,76,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-shots"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",2753,76,9,16]),types.vector(["bootstrap2012/bootstrap-teachpack",2772,76,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2774,76,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2778,76,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",2789,76,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2807,76,63,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2823,76,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2841,76,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",2858,76,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",2871,76,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2887,76,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2903,76,159,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2777,76,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2777,76,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2778,76,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2790,76,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2804,76,60,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2789,76,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2789,76,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2790,76,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2824,76,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2838,76,94,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2823,76,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2823,76,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2824,76,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2842,76,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",2855,76,111,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2841,76,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2841,76,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2842,76,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2859,76,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",2868,76,124,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2858,76,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2858,76,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2859,76,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2872,76,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2884,76,140,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2871,76,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2871,76,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2872,76,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2888,76,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2900,76,156,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2887,76,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2887,76,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2888,76,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2904,76,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2916,76,172,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2903,76,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2903,76,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2904,76,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2930,77,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-targets"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",2930,77,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",2949,77,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2951,77,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2955,77,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",2966,77,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",2984,77,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3000,77,79,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3018,77,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3035,77,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3048,77,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3064,77,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3080,77,159,15]),types.vector(["bootstrap2012/bootstrap-teachpack",2954,77,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2954,77,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2955,77,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2967,77,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",2981,77,60,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2966,77,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2966,77,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2967,77,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",2985,77,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",2997,77,76,1]),types.vector(["bootstrap2012/bootstrap-teachpack",2984,77,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",2984,77,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",2985,77,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3019,77,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3032,77,111,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3018,77,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3018,77,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3019,77,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3036,77,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",3045,77,124,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3035,77,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3035,77,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3036,77,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3049,77,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3061,77,140,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3048,77,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3048,77,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3049,77,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3065,77,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3077,77,156,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3064,77,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3064,77,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3065,77,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3081,77,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3093,77,172,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3080,77,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3080,77,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3081,77,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3107,78,9,17])}],"body":{"$":"lam","name":types.symbol("world-with-player"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3107,78,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3126,78,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3128,78,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3132,78,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",3143,78,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3161,78,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3177,78,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3195,78,97,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3212,78,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3225,78,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3241,78,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3257,78,159,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3131,78,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3131,78,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3132,78,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3144,78,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3158,78,60,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3143,78,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3143,78,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3144,78,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3162,78,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3174,78,76,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3161,78,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3161,78,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3162,78,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3178,78,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3192,78,94,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3177,78,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3177,78,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3178,78,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3213,78,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",3222,78,124,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3212,78,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3212,78,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3213,78,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3226,78,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3238,78,140,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3225,78,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3225,78,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3226,78,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3242,78,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3254,78,156,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3241,78,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3241,78,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3242,78,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3258,78,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3270,78,172,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3257,78,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3257,78,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3258,78,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3284,79,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-score"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3284,79,9,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3303,79,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3305,79,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3309,79,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",3320,79,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3338,79,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3354,79,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3372,79,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3389,79,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3402,79,127,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3418,79,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3434,79,159,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3308,79,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3308,79,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3309,79,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3321,79,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3335,79,60,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3320,79,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3320,79,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3321,79,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3339,79,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3351,79,76,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3338,79,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3338,79,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3339,79,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3355,79,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3369,79,94,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3354,79,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3354,79,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3355,79,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3373,79,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3386,79,111,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3372,79,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3372,79,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3373,79,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3390,79,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",3399,79,124,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3389,79,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3389,79,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3390,79,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3419,79,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3431,79,156,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3418,79,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3418,79,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3419,79,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3435,79,160,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3447,79,172,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3434,79,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3434,79,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3435,79,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3461,80,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-timer"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3461,80,9,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3480,80,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3482,80,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3486,80,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",3497,80,45,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3515,80,63,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3531,80,79,17]),types.vector(["bootstrap2012/bootstrap-teachpack",3549,80,97,16]),types.vector(["bootstrap2012/bootstrap-teachpack",3566,80,114,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3579,80,127,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3595,80,143,15]),types.vector(["bootstrap2012/bootstrap-teachpack",3611,80,159,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3485,80,33,128])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3485,80,33,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3486,80,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3498,80,46,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3512,80,60,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3497,80,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3497,80,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3498,80,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3516,80,64,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3528,80,76,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3515,80,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3515,80,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3516,80,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3532,80,80,13]),types.vector(["bootstrap2012/bootstrap-teachpack",3546,80,94,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3531,80,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3531,80,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3532,80,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3550,80,98,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3563,80,111,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3549,80,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3549,80,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3550,80,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3567,80,115,8]),types.vector(["bootstrap2012/bootstrap-teachpack",3576,80,124,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3566,80,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3566,80,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3567,80,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3580,80,128,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3592,80,140,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3579,80,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3579,80,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3580,80,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3596,80,144,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3608,80,156,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3595,80,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3595,80,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3596,80,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3690,83,9,24])}],"body":{"$":"lam","name":types.symbol("add-informative-triangle"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3690,83,9,24]),types.vector(["bootstrap2012/bootstrap-teachpack",3715,83,34,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3718,83,37,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3721,83,40,5]),types.vector(["bootstrap2012/bootstrap-teachpack",3727,83,46,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3748,84,9,78]),types.vector(["bootstrap2012/bootstrap-teachpack",3762,84,23,63]),types.vector(["bootstrap2012/bootstrap-teachpack",3748,84,9,78])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3748,84,9,78])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3748,84,9,78]),types.vector(["bootstrap2012/bootstrap-teachpack",3749,84,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3836,85,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",3840,85,13,21]),types.vector(["bootstrap2012/bootstrap-teachpack",3836,85,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3836,85,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3836,85,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",3837,85,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3872,86,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",3876,86,13,21]),types.vector(["bootstrap2012/bootstrap-teachpack",3872,86,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3872,86,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",3872,86,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",3873,86,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3905,87,5,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3909,87,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3914,87,14,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3916,87,16,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3919,87,19,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3914,87,14,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3913,87,13,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3909,87,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3924,87,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",3926,87,26,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3929,87,29,2]),types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3924,87,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3923,87,23,9])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3908,87,8,25])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4001,89,8,839]),types.vector(["bootstrap2012/bootstrap-teachpack",4011,89,18,9]),types.vector(["bootstrap2012/bootstrap-teachpack",4040,90,18,9]),types.vector(["bootstrap2012/bootstrap-teachpack",4071,91,20,60]),types.vector(["bootstrap2012/bootstrap-teachpack",4001,89,8,839])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4001,89,8,839])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",4001,89,8,839]),types.vector(["bootstrap2012/bootstrap-teachpack",4008,89,15,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4037,90,15,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4066,91,15,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4145,92,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4169,93,11,52]),types.vector(["bootstrap2012/bootstrap-teachpack",4233,94,11,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4249,94,27,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4263,95,11,575]),types.vector(["bootstrap2012/bootstrap-teachpack",4144,92,10,695])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4144,92,10,695])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4145,92,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4170,93,12,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4175,93,17,36]),types.vector(["bootstrap2012/bootstrap-teachpack",4212,93,54,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4215,93,57,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4169,93,11,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4169,93,11,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4170,93,12,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4176,93,18,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4181,93,23,29]),types.vector(["bootstrap2012/bootstrap-teachpack",4175,93,17,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4175,93,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4182,93,24,21]),types.vector(["bootstrap2012/bootstrap-teachpack",4204,93,46,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4207,93,49,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4181,93,23,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4181,93,23,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4183,93,25,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4189,93,31,13]),types.vector(["bootstrap2012/bootstrap-teachpack",4182,93,24,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4182,93,24,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4183,93,25,5])},"rands":[{"$":"toplevel","depth":11,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4189,93,31,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4234,94,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4236,94,14,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4239,94,17,8]),types.vector(["bootstrap2012/bootstrap-teachpack",4233,94,11,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4233,94,11,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4234,94,12,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4240,94,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4242,94,20,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4245,94,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4239,94,17,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4239,94,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4240,94,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4264,95,12,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4288,96,12,17]),types.vector(["bootstrap2012/bootstrap-teachpack",4318,97,12,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4334,97,28,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4349,98,12,488]),types.vector(["bootstrap2012/bootstrap-teachpack",4263,95,11,575])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4263,95,11,575])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4264,95,12,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4289,96,13,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4294,96,18,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4297,96,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4299,96,23,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4288,96,12,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4288,96,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4289,96,13,4])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4319,97,13,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4321,97,15,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4324,97,18,8]),types.vector(["bootstrap2012/bootstrap-teachpack",4318,97,12,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4318,97,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4319,97,13,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4325,97,19,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4327,97,21,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4330,97,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4324,97,18,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4324,97,18,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4325,97,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4350,98,13,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4375,99,13,52]),types.vector(["bootstrap2012/bootstrap-teachpack",4441,100,13,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4444,100,16,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4473,101,13,363]),types.vector(["bootstrap2012/bootstrap-teachpack",4349,98,12,488])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4349,98,12,488])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4350,98,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4376,99,14,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4381,99,19,36]),types.vector(["bootstrap2012/bootstrap-teachpack",4418,99,56,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4421,99,59,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4375,99,13,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4375,99,13,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4376,99,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4382,99,20,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4387,99,25,29]),types.vector(["bootstrap2012/bootstrap-teachpack",4381,99,19,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4381,99,19,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4388,99,26,21]),types.vector(["bootstrap2012/bootstrap-teachpack",4410,99,48,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4413,99,51,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4387,99,25,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4387,99,25,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4389,99,27,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4395,99,33,13]),types.vector(["bootstrap2012/bootstrap-teachpack",4388,99,26,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4388,99,26,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4389,99,27,5])},"rands":[{"$":"toplevel","depth":19,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4395,99,33,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4445,100,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4447,100,19,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4450,100,22,8]),types.vector(["bootstrap2012/bootstrap-teachpack",4444,100,16,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4444,100,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4445,100,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4451,100,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4453,100,25,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4456,100,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4450,100,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4450,100,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4451,100,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4474,101,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4500,102,14,17]),types.vector(["bootstrap2012/bootstrap-teachpack",4532,103,14,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4535,103,17,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4565,104,14,270]),types.vector(["bootstrap2012/bootstrap-teachpack",4473,101,13,363])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4473,101,13,363])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4474,101,14,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4501,102,15,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4506,102,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4508,102,22,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4511,102,25,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4500,102,14,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4500,102,14,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4501,102,15,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4536,103,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4538,103,20,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4541,103,23,8]),types.vector(["bootstrap2012/bootstrap-teachpack",4535,103,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4535,103,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":18,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4536,103,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4542,103,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4544,103,26,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4547,103,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4541,103,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4541,103,23,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4542,103,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4566,104,15,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4593,105,15,55]),types.vector(["bootstrap2012/bootstrap-teachpack",4664,106,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4680,106,31,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4711,107,15,123]),types.vector(["bootstrap2012/bootstrap-teachpack",4565,104,14,270])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4565,104,14,270])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4566,104,15,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4594,105,16,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4599,105,21,39]),types.vector(["bootstrap2012/bootstrap-teachpack",4639,105,61,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4642,105,64,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4593,105,15,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4593,105,15,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":23,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4594,105,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4600,105,22,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4605,105,27,32]),types.vector(["bootstrap2012/bootstrap-teachpack",4599,105,21,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4599,105,21,39])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4606,105,28,18]),types.vector(["bootstrap2012/bootstrap-teachpack",4625,105,47,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4628,105,50,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4631,105,53,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4634,105,56,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4605,105,27,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4605,105,27,32])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4607,105,29,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4613,105,35,10]),types.vector(["bootstrap2012/bootstrap-teachpack",4606,105,28,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4606,105,28,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":29,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4607,105,29,5])},"rands":[{"$":"toplevel","depth":29,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4613,105,35,10])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4665,106,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4667,106,18,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4670,106,21,8]),types.vector(["bootstrap2012/bootstrap-teachpack",4664,106,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4664,106,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4665,106,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4671,106,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4673,106,24,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4676,106,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4670,106,21,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4670,106,21,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4671,106,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4681,106,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4683,106,34,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4686,106,37,8]),types.vector(["bootstrap2012/bootstrap-teachpack",4680,106,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4680,106,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4681,106,32,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4687,106,38,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4689,106,40,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4692,106,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4686,106,37,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4686,106,37,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4687,106,38,1])},"rands":[{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4712,107,16,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4740,108,16,18]),types.vector(["bootstrap2012/bootstrap-teachpack",4775,109,16,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4791,109,32,15]),types.vector(["bootstrap2012/bootstrap-teachpack",4823,110,16,10]),types.vector(["bootstrap2012/bootstrap-teachpack",4711,107,15,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4711,107,15,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4712,107,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4741,108,17,4]),types.vector(["bootstrap2012/bootstrap-teachpack",4746,108,22,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4749,108,25,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4752,108,28,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4740,108,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4740,108,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":27,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4741,108,17,4])},"rands":[{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4776,109,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4778,109,19,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4781,109,22,8]),types.vector(["bootstrap2012/bootstrap-teachpack",4775,109,16,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4775,109,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4776,109,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4782,109,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4784,109,25,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4787,109,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4781,109,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4781,109,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4782,109,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4792,109,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4794,109,35,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4797,109,38,8]),types.vector(["bootstrap2012/bootstrap-teachpack",4791,109,32,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4791,109,32,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4792,109,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4798,109,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4800,109,41,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4803,109,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4797,109,38,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4797,109,38,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4798,109,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":36,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4012,89,19,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4014,89,21,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4017,89,24,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4011,89,18,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4011,89,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4012,89,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4041,90,19,1]),types.vector(["bootstrap2012/bootstrap-teachpack",4043,90,21,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4046,90,24,2]),types.vector(["bootstrap2012/bootstrap-teachpack",4040,90,18,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4040,90,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4041,90,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",4072,91,21,6]),types.vector(["bootstrap2012/bootstrap-teachpack",4080,91,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4086,91,35,14]),types.vector(["bootstrap2012/bootstrap-teachpack",4101,91,50,28]),types.vector(["bootstrap2012/bootstrap-teachpack",4085,91,34,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4085,91,34,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":192,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4086,91,35,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4102,91,51,14]),types.vector(["bootstrap2012/bootstrap-teachpack",4117,91,66,11]),types.vector(["bootstrap2012/bootstrap-teachpack",4101,91,50,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4101,91,50,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":212,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4102,91,51,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",4118,91,67,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4124,91,73,3]),types.vector(["bootstrap2012/bootstrap-teachpack",4117,91,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",4117,91,66,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":170,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4118,91,67,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3877,86,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",3884,86,21,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3876,86,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3876,86,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3877,86,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3841,85,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",3848,85,21,12]),types.vector(["bootstrap2012/bootstrap-teachpack",3840,85,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3840,85,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3841,85,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3763,84,24,11]),types.vector(["bootstrap2012/bootstrap-teachpack",3775,84,36,49]),types.vector(["bootstrap2012/bootstrap-teachpack",3762,84,23,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3762,84,23,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3763,84,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3776,84,37,9]),types.vector(["bootstrap2012/bootstrap-teachpack",3786,84,47,18]),types.vector(["bootstrap2012/bootstrap-teachpack",3805,84,66,18]),types.vector(["bootstrap2012/bootstrap-teachpack",3775,84,36,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3775,84,36,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3776,84,37,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3787,84,48,5]),types.vector(["bootstrap2012/bootstrap-teachpack",3793,84,54,10]),types.vector(["bootstrap2012/bootstrap-teachpack",3786,84,47,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3786,84,47,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3787,84,48,5])},"rands":[{"$":"toplevel","depth":5,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3793,84,54,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",3806,84,67,5]),types.vector(["bootstrap2012/bootstrap-teachpack",3812,84,73,10]),types.vector(["bootstrap2012/bootstrap-teachpack",3805,84,66,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",3805,84,66,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3806,84,67,5])},"rands":[{"$":"toplevel","depth":5,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",3812,84,73,10])}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",4962,114,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",4962,114,9,10]),types.vector(["bootstrap2012/bootstrap-teachpack",4973,114,20,5]),types.vector(["bootstrap2012/bootstrap-teachpack",4979,114,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5000,115,9,47]),types.vector(["bootstrap2012/bootstrap-teachpack",5014,115,23,32]),types.vector(["bootstrap2012/bootstrap-teachpack",5000,115,9,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5000,115,9,47])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5000,115,9,47]),types.vector(["bootstrap2012/bootstrap-teachpack",5001,115,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5057,116,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",5061,116,13,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5057,116,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5057,116,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5057,116,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",5058,116,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5093,117,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",5097,117,13,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5093,117,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5093,117,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5093,117,9,26]),types.vector(["bootstrap2012/bootstrap-teachpack",5094,117,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5129,118,9,235]),types.vector(["bootstrap2012/bootstrap-teachpack",5140,118,20,223]),types.vector(["bootstrap2012/bootstrap-teachpack",5129,118,9,235])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5129,118,9,235])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5129,118,9,235]),types.vector(["bootstrap2012/bootstrap-teachpack",5130,118,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5371,122,5,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5383,122,17,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5405,122,39,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5408,122,42,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5411,122,45,9]),types.vector(["bootstrap2012/bootstrap-teachpack",5370,122,4,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5370,122,4,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5371,122,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5384,122,18,13]),types.vector(["bootstrap2012/bootstrap-teachpack",5398,122,32,5]),types.vector(["bootstrap2012/bootstrap-teachpack",5383,122,17,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5383,122,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5384,122,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5141,118,21,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5145,118,25,8]),types.vector(["bootstrap2012/bootstrap-teachpack",5154,118,34,25]),types.vector(["bootstrap2012/bootstrap-teachpack",5180,118,60,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5145,118,25,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5155,118,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",5161,118,41,17]),types.vector(["bootstrap2012/bootstrap-teachpack",5154,118,34,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5154,118,34,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5155,118,35,5])},"rands":[{"$":"toplevel","depth":8,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5161,118,41,17])}]}}},{"$":"constant","value":""}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5144,118,24,39])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5244,120,25,24]),types.vector(["bootstrap2012/bootstrap-teachpack",5269,120,50,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5272,120,53,2]),types.vector(["bootstrap2012/bootstrap-teachpack",5275,120,56,25]),types.vector(["bootstrap2012/bootstrap-teachpack",5351,121,50,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5243,120,24,119])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5243,120,24,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5244,120,25,24])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5276,120,57,5]),types.vector(["bootstrap2012/bootstrap-teachpack",5282,120,63,17]),types.vector(["bootstrap2012/bootstrap-teachpack",5275,120,56,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5275,120,56,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5276,120,57,5])},"rands":[{"$":"toplevel","depth":6,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5282,120,63,17])}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5098,117,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",5105,117,21,12]),types.vector(["bootstrap2012/bootstrap-teachpack",5097,117,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5097,117,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5098,117,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5062,116,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",5069,116,21,12]),types.vector(["bootstrap2012/bootstrap-teachpack",5061,116,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5061,116,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5062,116,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5015,115,24,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5027,115,36,18]),types.vector(["bootstrap2012/bootstrap-teachpack",5014,115,23,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5014,115,23,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5015,115,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5028,115,37,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5039,115,48,5]),types.vector(["bootstrap2012/bootstrap-teachpack",5027,115,36,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5027,115,36,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5028,115,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5548,127,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5548,127,9,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5559,127,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5571,128,9,118]),types.vector(["bootstrap2012/bootstrap-teachpack",5585,128,23,103]),types.vector(["bootstrap2012/bootstrap-teachpack",5571,128,9,118])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5571,128,9,118])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5571,128,9,118]),types.vector(["bootstrap2012/bootstrap-teachpack",5572,128,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5699,130,9,305]),types.vector(["bootstrap2012/bootstrap-teachpack",5707,130,17,296]),types.vector(["bootstrap2012/bootstrap-teachpack",5699,130,9,305])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5699,130,9,305])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",5699,130,9,305]),types.vector(["bootstrap2012/bootstrap-teachpack",5700,130,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6014,135,9,90]),types.vector(["bootstrap2012/bootstrap-teachpack",6029,136,10,74]),types.vector(["bootstrap2012/bootstrap-teachpack",6014,135,9,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6014,135,9,90])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",6014,135,9,90]),types.vector(["bootstrap2012/bootstrap-teachpack",6015,135,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6124,138,7,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6133,138,16,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6144,138,27,38]),types.vector(["bootstrap2012/bootstrap-teachpack",6123,138,6,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6123,138,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6124,138,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6133,138,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6145,138,28,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6152,138,35,29]),types.vector(["bootstrap2012/bootstrap-teachpack",6144,138,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6144,138,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6145,138,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6153,138,36,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6164,138,47,16]),types.vector(["bootstrap2012/bootstrap-teachpack",6152,138,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6152,138,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6153,138,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6165,138,48,12]),types.vector(["bootstrap2012/bootstrap-teachpack",6178,138,61,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6164,138,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6164,138,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6165,138,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6191,139,7,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6200,139,16,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6211,139,27,38]),types.vector(["bootstrap2012/bootstrap-teachpack",6190,139,6,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6190,139,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6191,139,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6200,139,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6212,139,28,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6219,139,35,29]),types.vector(["bootstrap2012/bootstrap-teachpack",6211,139,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6211,139,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6212,139,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6220,139,36,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6231,139,47,16]),types.vector(["bootstrap2012/bootstrap-teachpack",6219,139,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6219,139,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6220,139,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6232,139,48,12]),types.vector(["bootstrap2012/bootstrap-teachpack",6245,139,61,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6231,139,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6231,139,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6232,139,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6259,141,7,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6268,141,16,7]),types.vector(["bootstrap2012/bootstrap-teachpack",6276,141,24,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6258,141,6,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6258,141,6,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6259,141,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6268,141,16,7])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6277,141,25,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6289,141,37,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6276,141,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6276,141,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6277,141,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6300,142,7,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6304,142,11,2]),types.vector(["bootstrap2012/bootstrap-teachpack",6307,142,14,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6323,142,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6304,142,11,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6308,142,15,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6320,142,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6307,142,14,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6307,142,14,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6308,142,15,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6303,142,10,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6337,143,11,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6348,143,22,60]),types.vector(["bootstrap2012/bootstrap-teachpack",6336,143,10,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6336,143,10,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":225,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6337,143,11,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2012/gameover.png"}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6421,144,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6433,144,23,77]),types.vector(["bootstrap2012/bootstrap-teachpack",6534,145,23,45]),types.vector(["bootstrap2012/bootstrap-teachpack",6580,145,69,2]),types.vector(["bootstrap2012/bootstrap-teachpack",6607,146,23,48]),types.vector(["bootstrap2012/bootstrap-teachpack",6420,144,10,236])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6420,144,10,236])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6421,144,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6434,144,24,9]),types.vector(["bootstrap2012/bootstrap-teachpack",6444,144,34,12]),types.vector(["bootstrap2012/bootstrap-teachpack",6457,144,47,2]),types.vector(["bootstrap2012/bootstrap-teachpack",6460,144,50,19]),types.vector(["bootstrap2012/bootstrap-teachpack",6480,144,70,2]),types.vector(["bootstrap2012/bootstrap-teachpack",6483,144,73,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6492,144,82,7]),types.vector(["bootstrap2012/bootstrap-teachpack",6500,144,90,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6506,144,96,3]),types.vector(["bootstrap2012/bootstrap-teachpack",6433,144,23,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6433,144,23,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6434,144,24,9])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":18},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6461,144,51,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6467,144,57,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6460,144,50,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6460,144,50,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6461,144,51,5])},"rands":[{"$":"toplevel","depth":13,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6467,144,57,11])}]}}},{"$":"constant","value":false},{"$":"constant","value":types.symbol("default")},{"$":"constant","value":types.symbol("italic")},{"$":"constant","value":types.symbol("bold")},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6535,145,24,8]),types.vector(["bootstrap2012/bootstrap-teachpack",6544,145,33,32]),types.vector(["bootstrap2012/bootstrap-teachpack",6577,145,66,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6534,145,23,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6534,145,23,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6535,145,24,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6545,145,34,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6557,145,46,18]),types.vector(["bootstrap2012/bootstrap-teachpack",6544,145,33,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6544,145,33,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6545,145,34,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6558,145,47,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6564,145,53,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6557,145,46,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6557,145,46,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6558,145,47,5])},"rands":[{"$":"toplevel","depth":8,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6564,145,53,10])}]}}}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6608,146,24,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6614,146,30,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6625,146,41,18]),types.vector(["bootstrap2012/bootstrap-teachpack",6644,146,60,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6607,146,23,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6607,146,23,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6608,146,24,5])},"rands":[{"$":"toplevel","depth":7,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6614,146,30,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6626,146,42,5]),types.vector(["bootstrap2012/bootstrap-teachpack",6632,146,48,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6625,146,41,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6625,146,41,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6626,146,42,5])},"rands":[{"$":"toplevel","depth":8,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6632,146,48,10])}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6030,136,11,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6037,136,18,17]),types.vector(["bootstrap2012/bootstrap-teachpack",6055,136,36,17]),types.vector(["bootstrap2012/bootstrap-teachpack",6073,136,54,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6089,136,70,13]),types.vector(["bootstrap2012/bootstrap-teachpack",6029,136,10,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6029,136,10,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6030,136,11,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6038,136,19,13]),types.vector(["bootstrap2012/bootstrap-teachpack",6052,136,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6037,136,18,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6037,136,18,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6038,136,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6056,136,37,13]),types.vector(["bootstrap2012/bootstrap-teachpack",6070,136,51,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6055,136,36,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6055,136,36,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6056,136,37,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6074,136,55,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6086,136,67,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6073,136,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6073,136,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6074,136,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6090,136,71,4]),types.vector(["bootstrap2012/bootstrap-teachpack",6095,136,76,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6089,136,70,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6089,136,70,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6090,136,71,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5708,130,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5712,130,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5714,130,24,15]),types.vector(["bootstrap2012/bootstrap-teachpack",5730,130,40,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5712,130,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5715,130,25,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5727,130,37,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5714,130,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5714,130,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5715,130,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5711,130,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5755,131,22,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5766,131,33,29]),types.vector(["bootstrap2012/bootstrap-teachpack",5829,132,33,134]),types.vector(["bootstrap2012/bootstrap-teachpack",5754,131,21,210])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5754,131,21,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5755,131,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5767,131,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",5778,131,45,16]),types.vector(["bootstrap2012/bootstrap-teachpack",5766,131,33,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5766,131,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5767,131,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5779,131,46,12]),types.vector(["bootstrap2012/bootstrap-teachpack",5792,131,59,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5778,131,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5778,131,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5779,131,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5830,132,34,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5842,132,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5844,132,48,23]),types.vector(["bootstrap2012/bootstrap-teachpack",5868,132,72,23]),types.vector(["bootstrap2012/bootstrap-teachpack",5939,133,47,7]),types.vector(["bootstrap2012/bootstrap-teachpack",5947,133,55,15]),types.vector(["bootstrap2012/bootstrap-teachpack",5829,132,33,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5829,132,33,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5830,132,34,11])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5845,132,49,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5847,132,51,3]),types.vector(["bootstrap2012/bootstrap-teachpack",5851,132,55,15]),types.vector(["bootstrap2012/bootstrap-teachpack",5844,132,48,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5844,132,48,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5845,132,49,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5852,132,56,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5864,132,68,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5851,132,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5851,132,55,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5852,132,56,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5869,132,73,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5871,132,75,3]),types.vector(["bootstrap2012/bootstrap-teachpack",5875,132,79,15]),types.vector(["bootstrap2012/bootstrap-teachpack",5868,132,72,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5868,132,72,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5869,132,73,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5876,132,80,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5888,132,92,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5875,132,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5875,132,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5876,132,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":8,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5947,133,55,15])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5987,134,22,12]),types.vector(["bootstrap2012/bootstrap-teachpack",6000,134,35,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5986,134,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5986,134,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5987,134,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5586,128,24,13]),types.vector(["bootstrap2012/bootstrap-teachpack",5600,128,38,15]),types.vector(["bootstrap2012/bootstrap-teachpack",5616,128,54,28]),types.vector(["bootstrap2012/bootstrap-teachpack",5655,129,38,32]),types.vector(["bootstrap2012/bootstrap-teachpack",5585,128,23,103])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5585,128,23,103])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5586,128,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5601,128,39,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5613,128,51,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5600,128,38,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5600,128,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5601,128,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5656,129,39,14]),types.vector(["bootstrap2012/bootstrap-teachpack",5671,129,54,15]),types.vector(["bootstrap2012/bootstrap-teachpack",5655,129,38,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5655,129,38,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":192,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5656,129,39,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",5672,129,55,11]),types.vector(["bootstrap2012/bootstrap-teachpack",5684,129,67,1]),types.vector(["bootstrap2012/bootstrap-teachpack",5671,129,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",5671,129,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",5672,129,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6835,151,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",6835,151,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6847,151,21,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6864,153,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6866,153,8,19]),types.vector(["bootstrap2012/bootstrap-teachpack",6886,153,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6864,153,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6867,153,9,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6883,153,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6866,153,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6866,153,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6867,153,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6863,153,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",6895,154,6,6]),types.vector(["bootstrap2012/bootstrap-teachpack",6903,154,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6907,154,18,10]),types.vector(["bootstrap2012/bootstrap-teachpack",6918,154,29,39]),types.vector(["bootstrap2012/bootstrap-teachpack",6958,154,69,17]),types.vector(["bootstrap2012/bootstrap-teachpack",6906,154,17,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6906,154,17,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6907,154,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6919,154,30,9]),types.vector(["bootstrap2012/bootstrap-teachpack",6929,154,40,15]),types.vector(["bootstrap2012/bootstrap-teachpack",6945,154,56,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6918,154,29,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6918,154,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6919,154,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6930,154,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6932,154,43,11]),types.vector(["bootstrap2012/bootstrap-teachpack",6929,154,40,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6929,154,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6933,154,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",6941,154,52,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6932,154,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6932,154,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6933,154,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6946,154,57,7]),types.vector(["bootstrap2012/bootstrap-teachpack",6954,154,65,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6945,154,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6945,154,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6946,154,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6959,154,70,13]),types.vector(["bootstrap2012/bootstrap-teachpack",6973,154,84,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6958,154,69,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6958,154,69,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6959,154,70,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6985,155,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6987,155,8,19]),types.vector(["bootstrap2012/bootstrap-teachpack",7007,155,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6985,155,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6988,155,9,15]),types.vector(["bootstrap2012/bootstrap-teachpack",7004,155,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",6987,155,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6987,155,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6988,155,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6984,155,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7016,156,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7019,156,9,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7023,156,13,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7034,156,24,27]),types.vector(["bootstrap2012/bootstrap-teachpack",7062,156,52,17]),types.vector(["bootstrap2012/bootstrap-teachpack",7022,156,12,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7022,156,12,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7023,156,13,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7035,156,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7037,156,27,11]),types.vector(["bootstrap2012/bootstrap-teachpack",7049,156,39,11]),types.vector(["bootstrap2012/bootstrap-teachpack",7034,156,24,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7034,156,24,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7038,156,28,7]),types.vector(["bootstrap2012/bootstrap-teachpack",7046,156,36,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7037,156,27,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7037,156,27,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7038,156,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7050,156,40,7]),types.vector(["bootstrap2012/bootstrap-teachpack",7058,156,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7049,156,39,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7049,156,39,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7050,156,40,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7063,156,53,13]),types.vector(["bootstrap2012/bootstrap-teachpack",7077,156,67,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7062,156,52,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7062,156,52,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7063,156,53,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231]),types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231]),types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",6852,152,2,231])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7217,161,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7217,161,9,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7223,161,15,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7229,161,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7241,162,9,60]),types.vector(["bootstrap2012/bootstrap-teachpack",7252,162,20,48]),types.vector(["bootstrap2012/bootstrap-teachpack",7241,162,9,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7241,162,9,60])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7241,162,9,60]),types.vector(["bootstrap2012/bootstrap-teachpack",7242,162,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7311,163,9,33]),types.vector(["bootstrap2012/bootstrap-teachpack",7319,163,17,24]),types.vector(["bootstrap2012/bootstrap-teachpack",7311,163,9,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7311,163,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7311,163,9,33]),types.vector(["bootstrap2012/bootstrap-teachpack",7312,163,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7354,164,9,33]),types.vector(["bootstrap2012/bootstrap-teachpack",7362,164,17,24]),types.vector(["bootstrap2012/bootstrap-teachpack",7354,164,9,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7354,164,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7354,164,9,33]),types.vector(["bootstrap2012/bootstrap-teachpack",7355,164,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7397,165,9,443]),types.vector(["bootstrap2012/bootstrap-teachpack",7410,165,22,429]),types.vector(["bootstrap2012/bootstrap-teachpack",7397,165,9,443])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7397,165,9,443])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7397,165,9,443]),types.vector(["bootstrap2012/bootstrap-teachpack",7398,165,10,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7847,172,5,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7858,172,16,11]),types.vector(["bootstrap2012/bootstrap-teachpack",7870,172,28,21]),types.vector(["bootstrap2012/bootstrap-teachpack",7846,172,4,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7846,172,4,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7847,172,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7871,172,29,13]),types.vector(["bootstrap2012/bootstrap-teachpack",7885,172,43,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7870,172,28,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7870,172,28,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7871,172,29,13])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7411,165,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7415,165,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7417,165,29,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7430,165,42,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7415,165,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7418,165,30,3]),types.vector(["bootstrap2012/bootstrap-teachpack",7422,165,34,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7417,165,29,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7417,165,29,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7418,165,30,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7431,165,43,3]),types.vector(["bootstrap2012/bootstrap-teachpack",7435,165,47,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7430,165,42,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7430,165,42,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7431,165,43,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7414,165,26,29])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7471,166,27,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7475,166,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7477,166,33,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7484,166,40,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7475,166,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7474,166,30,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7518,167,31,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7528,167,41,14]),types.vector(["bootstrap2012/bootstrap-teachpack",7543,167,56,20]),types.vector(["bootstrap2012/bootstrap-teachpack",7517,167,30,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7517,167,30,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7518,167,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7529,167,42,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7536,167,49,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7528,167,41,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7528,167,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7529,167,42,6])},"rands":[{"$":"toplevel","depth":4,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7536,167,49,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7544,167,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7546,167,59,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7556,167,69,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7543,167,56,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7543,167,56,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7544,167,57,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7547,167,60,7]),types.vector(["bootstrap2012/bootstrap-teachpack",7546,167,59,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7546,167,59,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7547,167,60,7])},"rands":[]}}},{"$":"toplevel","depth":5,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7556,167,69,6])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7596,168,31,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7606,168,41,14]),types.vector(["bootstrap2012/bootstrap-teachpack",7621,168,56,16]),types.vector(["bootstrap2012/bootstrap-teachpack",7595,168,30,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7595,168,30,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7596,168,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7607,168,42,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7614,168,49,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7606,168,41,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7606,168,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7607,168,42,6])},"rands":[{"$":"toplevel","depth":4,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7614,168,49,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7622,168,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7624,168,59,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7634,168,69,2]),types.vector(["bootstrap2012/bootstrap-teachpack",7621,168,56,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7621,168,56,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7622,168,57,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7625,168,60,7]),types.vector(["bootstrap2012/bootstrap-teachpack",7624,168,59,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7624,168,59,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7625,168,60,7])},"rands":[]}}},{"$":"constant","value":-1}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7667,169,27,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7671,169,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7673,169,33,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7680,169,40,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7671,169,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7670,169,30,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7715,170,31,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7725,170,41,19]),types.vector(["bootstrap2012/bootstrap-teachpack",7745,170,61,15]),types.vector(["bootstrap2012/bootstrap-teachpack",7714,170,30,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7714,170,30,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7715,170,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7726,170,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7728,170,44,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7738,170,54,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7725,170,41,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7725,170,41,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7726,170,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7729,170,45,7]),types.vector(["bootstrap2012/bootstrap-teachpack",7728,170,44,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7728,170,44,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7729,170,45,7])},"rands":[]}}},{"$":"toplevel","depth":5,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7738,170,54,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7746,170,62,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7753,170,69,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7745,170,61,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7745,170,61,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7746,170,62,6])},"rands":[{"$":"toplevel","depth":4,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7753,170,69,6])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7794,171,31,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7804,171,41,16]),types.vector(["bootstrap2012/bootstrap-teachpack",7821,171,58,15]),types.vector(["bootstrap2012/bootstrap-teachpack",7793,171,30,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7793,171,30,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7794,171,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7805,171,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7807,171,44,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7817,171,54,2]),types.vector(["bootstrap2012/bootstrap-teachpack",7804,171,41,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7804,171,41,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7805,171,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7808,171,45,7]),types.vector(["bootstrap2012/bootstrap-teachpack",7807,171,44,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7807,171,44,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7808,171,45,7])},"rands":[]}}},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7822,171,59,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7829,171,66,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7821,171,58,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7821,171,58,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7822,171,59,6])},"rands":[{"$":"toplevel","depth":4,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7829,171,66,6])}]}}}]}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7363,164,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7365,164,20,18]),types.vector(["bootstrap2012/bootstrap-teachpack",7384,164,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7362,164,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7362,164,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7363,164,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7366,164,21,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7373,164,28,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7365,164,20,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7365,164,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7366,164,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7320,163,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7322,163,20,18]),types.vector(["bootstrap2012/bootstrap-teachpack",7341,163,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7319,163,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7319,163,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7320,163,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7323,163,21,6]),types.vector(["bootstrap2012/bootstrap-teachpack",7330,163,28,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7322,163,20,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7322,163,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7323,163,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7253,162,21,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7264,162,32,35]),types.vector(["bootstrap2012/bootstrap-teachpack",7252,162,20,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7252,162,20,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7253,162,21,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7265,162,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7267,162,35,31]),types.vector(["bootstrap2012/bootstrap-teachpack",7264,162,32,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7264,162,32,35])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7268,162,36,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7279,162,47,15]),types.vector(["bootstrap2012/bootstrap-teachpack",7295,162,63,2]),types.vector(["bootstrap2012/bootstrap-teachpack",7267,162,35,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7267,162,35,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7268,162,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",7280,162,48,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7290,162,58,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7292,162,60,1]),types.vector(["bootstrap2012/bootstrap-teachpack",7279,162,47,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",7279,162,47,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7280,162,48,9])},"rands":[{"$":"constant","value":1},{"$":"constant","value":1}]}}},{"$":"constant","value":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",7906,175,9,9])}],"body":{"$":"lam","name":types.symbol("make-game"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",7906,175,9,9]),types.vector(["bootstrap2012/bootstrap-teachpack",7916,175,19,5]),types.vector(["bootstrap2012/bootstrap-teachpack",7922,175,25,11]),types.vector(["bootstrap2012/bootstrap-teachpack",7934,175,37,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7965,176,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",7976,176,30,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8010,177,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8021,177,30,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8055,178,19,9]),types.vector(["bootstrap2012/bootstrap-teachpack",8065,178,29,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8099,179,19,14]),types.vector(["bootstrap2012/bootstrap-teachpack",8114,179,34,17]),types.vector(["bootstrap2012/bootstrap-teachpack",8152,180,19,15]),types.vector(["bootstrap2012/bootstrap-teachpack",8168,180,35,11]),types.vector(["bootstrap2012/bootstrap-teachpack",8180,180,47,8]),types.vector(["bootstrap2012/bootstrap-teachpack",8209,181,19,7]),types.vector(["bootstrap2012/bootstrap-teachpack",8217,181,27,8])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",8230,182,3,4]),types.vector(["bootstrap2012/bootstrap-teachpack",8235,182,8,5]),types.vector(["bootstrap2012/bootstrap-teachpack",8241,182,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",8253,182,26,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8273,183,8,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8284,183,19,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8307,184,8,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8318,184,19,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8341,185,8,9]),types.vector(["bootstrap2012/bootstrap-teachpack",8351,185,18,13]),types.vector(["bootstrap2012/bootstrap-teachpack",8373,186,8,14]),types.vector(["bootstrap2012/bootstrap-teachpack",8388,186,23,17]),types.vector(["bootstrap2012/bootstrap-teachpack",8415,187,8,15]),types.vector(["bootstrap2012/bootstrap-teachpack",8431,187,24,11]),types.vector(["bootstrap2012/bootstrap-teachpack",8443,187,36,8]),types.vector(["bootstrap2012/bootstrap-teachpack",8461,188,8,7]),types.vector(["bootstrap2012/bootstrap-teachpack",8469,188,16,8]),types.vector(["bootstrap2012/bootstrap-teachpack",8229,182,2,249])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",8229,182,2,249])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8230,182,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8492,192,9,4])}],"body":{"$":"lam","name":types.symbol("play"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",8492,192,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",8497,192,14,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",8504,192,21,5]),types.vector(["bootstrap2012/bootstrap-teachpack",8510,192,27,12]),types.vector(["bootstrap2012/bootstrap-teachpack",8523,192,40,4]),types.vector(["bootstrap2012/bootstrap-teachpack",8503,192,20,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",8503,192,20,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":240,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8504,192,21,5])},"rands":[{"$":"toplevel","depth":2,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8510,192,27,12])},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",8842,199,9,12])}],"body":{"$":"lam","name":types.symbol("animate/proc"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",8842,199,9,12]),types.vector(["bootstrap2012/bootstrap-teachpack",8855,199,22,5]),types.vector(["bootstrap2012/bootstrap-teachpack",8861,199,28,11]),types.vector(["bootstrap2012/bootstrap-teachpack",8895,200,22,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8915,201,22,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8929,201,36,14]),types.vector(["bootstrap2012/bootstrap-teachpack",8952,202,22,10]),types.vector(["bootstrap2012/bootstrap-teachpack",8966,202,36,14]),types.vector(["bootstrap2012/bootstrap-teachpack",8989,203,22,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9003,203,36,14]),types.vector(["bootstrap2012/bootstrap-teachpack",9040,204,22,13]),types.vector(["bootstrap2012/bootstrap-teachpack",9054,204,36,18]),types.vector(["bootstrap2012/bootstrap-teachpack",9095,205,22,15]),types.vector(["bootstrap2012/bootstrap-teachpack",9111,205,38,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9123,205,50,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9154,206,22,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9164,206,32,10])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9190,208,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9199,208,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9211,208,26,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9189,208,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9189,208,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9190,208,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9199,208,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9229,209,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9238,209,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9249,209,25,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9228,209,4,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9228,209,4,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9229,209,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9238,209,14,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9250,209,26,12]),types.vector(["bootstrap2012/bootstrap-teachpack",9263,209,39,5]),types.vector(["bootstrap2012/bootstrap-teachpack",9269,209,45,6]),types.vector(["bootstrap2012/bootstrap-teachpack",9276,209,52,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9249,209,25,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9249,209,25,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9250,209,26,12])},"rands":[{"$":"toplevel","depth":5,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9263,209,39,5])},{"$":"toplevel","depth":5,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9269,209,45,6])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9294,210,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9303,210,14,13]),types.vector(["bootstrap2012/bootstrap-teachpack",9317,210,28,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9293,210,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9293,210,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9294,210,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9303,210,14,13])},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9335,211,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9344,211,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9355,211,25,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9334,211,4,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9334,211,4,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9335,211,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9344,211,14,10])},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9370,212,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",9379,212,14,17]),types.vector(["bootstrap2012/bootstrap-teachpack",9397,212,32,15]),types.vector(["bootstrap2012/bootstrap-teachpack",9369,212,4,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9369,212,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9370,212,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9379,212,14,17])},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9425,213,11,68]),types.vector(["bootstrap2012/bootstrap-teachpack",9433,213,19,59]),types.vector(["bootstrap2012/bootstrap-teachpack",9425,213,11,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9425,213,11,68])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9425,213,11,68]),types.vector(["bootstrap2012/bootstrap-teachpack",9426,213,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,10,11,12,16,17],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9589,216,11,44]),types.vector(["bootstrap2012/bootstrap-teachpack",9604,216,26,28]),types.vector(["bootstrap2012/bootstrap-teachpack",9589,216,11,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9589,216,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9589,216,11,44]),types.vector(["bootstrap2012/bootstrap-teachpack",9590,216,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9645,217,11,44]),types.vector(["bootstrap2012/bootstrap-teachpack",9660,217,26,28]),types.vector(["bootstrap2012/bootstrap-teachpack",9645,217,11,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9645,217,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9645,217,11,44]),types.vector(["bootstrap2012/bootstrap-teachpack",9646,217,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9701,218,11,52]),types.vector(["bootstrap2012/bootstrap-teachpack",9720,218,30,32]),types.vector(["bootstrap2012/bootstrap-teachpack",9701,218,11,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9701,218,11,52])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9701,218,11,52]),types.vector(["bootstrap2012/bootstrap-teachpack",9702,218,12,17])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9765,219,11,348]),types.vector(["bootstrap2012/bootstrap-teachpack",9793,220,12,319]),types.vector(["bootstrap2012/bootstrap-teachpack",9765,219,11,348])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9765,219,11,348])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9765,219,11,348]),types.vector(["bootstrap2012/bootstrap-teachpack",9766,219,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10125,225,11,182]),types.vector(["bootstrap2012/bootstrap-teachpack",10136,225,22,170]),types.vector(["bootstrap2012/bootstrap-teachpack",10125,225,11,182])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10125,225,11,182])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10125,225,11,182]),types.vector(["bootstrap2012/bootstrap-teachpack",10126,225,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10319,228,11,130]),types.vector(["bootstrap2012/bootstrap-teachpack",10329,228,21,119]),types.vector(["bootstrap2012/bootstrap-teachpack",10319,228,11,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10319,228,11,130])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10319,228,11,130]),types.vector(["bootstrap2012/bootstrap-teachpack",10320,228,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10532,232,11,64]),types.vector(["bootstrap2012/bootstrap-teachpack",10541,232,20,54]),types.vector(["bootstrap2012/bootstrap-teachpack",10532,232,11,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10532,232,11,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10532,232,11,64]),types.vector(["bootstrap2012/bootstrap-teachpack",10533,232,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10703,235,11,232]),types.vector(["bootstrap2012/bootstrap-teachpack",10716,235,24,218]),types.vector(["bootstrap2012/bootstrap-teachpack",10703,235,11,232])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10703,235,11,232])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10703,235,11,232]),types.vector(["bootstrap2012/bootstrap-teachpack",10704,235,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11034,241,11,133]),types.vector(["bootstrap2012/bootstrap-teachpack",11043,241,20,123]),types.vector(["bootstrap2012/bootstrap-teachpack",11034,241,11,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11034,241,11,133])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11034,241,11,133]),types.vector(["bootstrap2012/bootstrap-teachpack",11035,241,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11179,243,11,133]),types.vector(["bootstrap2012/bootstrap-teachpack",11188,243,20,123]),types.vector(["bootstrap2012/bootstrap-teachpack",11179,243,11,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11179,243,11,133])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11179,243,11,133]),types.vector(["bootstrap2012/bootstrap-teachpack",11180,243,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11324,245,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",11331,245,18,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11324,245,11,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11324,245,11,11])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11324,245,11,11]),types.vector(["bootstrap2012/bootstrap-teachpack",11325,245,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11451,248,11,72]),types.vector(["bootstrap2012/bootstrap-teachpack",11458,248,18,64]),types.vector(["bootstrap2012/bootstrap-teachpack",11451,248,11,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11451,248,11,72])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11451,248,11,72]),types.vector(["bootstrap2012/bootstrap-teachpack",11452,248,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11593,251,11,826]),types.vector(["bootstrap2012/bootstrap-teachpack",11603,251,21,815]),types.vector(["bootstrap2012/bootstrap-teachpack",11593,251,11,826])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11593,251,11,826])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11593,251,11,826]),types.vector(["bootstrap2012/bootstrap-teachpack",11594,251,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12432,264,11,377]),types.vector(["bootstrap2012/bootstrap-teachpack",12438,264,17,370]),types.vector(["bootstrap2012/bootstrap-teachpack",12432,264,11,377])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12432,264,11,377])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12432,264,11,377]),types.vector(["bootstrap2012/bootstrap-teachpack",12433,264,12,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12821,271,11,39]),types.vector(["bootstrap2012/bootstrap-teachpack",12826,271,16,33]),types.vector(["bootstrap2012/bootstrap-teachpack",12821,271,11,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12821,271,11,39])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12821,271,11,39]),types.vector(["bootstrap2012/bootstrap-teachpack",12822,271,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12928,274,11,2513]),types.vector(["bootstrap2012/bootstrap-teachpack",12942,274,25,2498]),types.vector(["bootstrap2012/bootstrap-teachpack",12928,274,11,2513])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12928,274,11,2513])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12928,274,11,2513]),types.vector(["bootstrap2012/bootstrap-teachpack",12929,274,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15451,310,7,8]),types.vector(["bootstrap2012/bootstrap-teachpack",15460,310,16,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15482,311,16,47]),types.vector(["bootstrap2012/bootstrap-teachpack",15546,312,16,25]),types.vector(["bootstrap2012/bootstrap-teachpack",15588,313,16,22]),types.vector(["bootstrap2012/bootstrap-teachpack",15627,314,16,17]),types.vector(["bootstrap2012/bootstrap-teachpack",15695,316,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",15450,310,6,258])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15450,310,6,258])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":238,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15451,310,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15483,311,17,9]),types.vector(["bootstrap2012/bootstrap-teachpack",15493,311,27,35]),types.vector(["bootstrap2012/bootstrap-teachpack",15482,311,16,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15482,311,16,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15483,311,17,9])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",15494,311,28,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15502,311,36,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[7],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15506,311,40,1]),types.vector(["bootstrap2012/bootstrap-teachpack",15508,311,42,15]),types.vector(["bootstrap2012/bootstrap-teachpack",15524,311,58,2]),types.vector(["bootstrap2012/bootstrap-teachpack",15505,311,39,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15505,311,39,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15506,311,40,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15509,311,43,11]),types.vector(["bootstrap2012/bootstrap-teachpack",15521,311,55,1]),types.vector(["bootstrap2012/bootstrap-teachpack",15508,311,42,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15508,311,42,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15509,311,43,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":-1}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15547,312,17,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15555,312,25,12]),types.vector(["bootstrap2012/bootstrap-teachpack",15568,312,38,2]),types.vector(["bootstrap2012/bootstrap-teachpack",15546,312,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15546,312,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15547,312,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15589,313,17,9]),types.vector(["bootstrap2012/bootstrap-teachpack",15599,313,27,10]),types.vector(["bootstrap2012/bootstrap-teachpack",15588,313,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15588,313,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15589,313,17,9])},"rands":[{"$":"toplevel","depth":7,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15599,313,27,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15628,314,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15635,314,24,8]),types.vector(["bootstrap2012/bootstrap-teachpack",15627,314,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15627,314,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":193,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15628,314,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15696,316,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15703,316,24,3]),types.vector(["bootstrap2012/bootstrap-teachpack",15695,316,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15695,316,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":191,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15696,316,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12943,274,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12946,274,29,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12984,275,34,25]),types.vector(["bootstrap2012/bootstrap-teachpack",12992,275,42,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12984,275,34,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12984,275,34,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12984,275,34,25]),types.vector(["bootstrap2012/bootstrap-teachpack",12985,275,35,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13044,276,34,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13048,276,38,12]),types.vector(["bootstrap2012/bootstrap-teachpack",13044,276,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13044,276,34,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13044,276,34,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13045,276,35,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13096,277,34,23]),types.vector(["bootstrap2012/bootstrap-teachpack",13103,277,41,15]),types.vector(["bootstrap2012/bootstrap-teachpack",13096,277,34,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13096,277,34,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13096,277,34,23]),types.vector(["bootstrap2012/bootstrap-teachpack",13097,277,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13154,278,34,23]),types.vector(["bootstrap2012/bootstrap-teachpack",13161,278,41,15]),types.vector(["bootstrap2012/bootstrap-teachpack",13154,278,34,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13154,278,34,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13154,278,34,23]),types.vector(["bootstrap2012/bootstrap-teachpack",13155,278,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13313,280,34,57]),types.vector(["bootstrap2012/bootstrap-teachpack",13325,280,46,44]),types.vector(["bootstrap2012/bootstrap-teachpack",13313,280,34,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13313,280,34,57])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13313,280,34,57]),types.vector(["bootstrap2012/bootstrap-teachpack",13314,280,35,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13405,281,34,40]),types.vector(["bootstrap2012/bootstrap-teachpack",13415,281,44,29]),types.vector(["bootstrap2012/bootstrap-teachpack",13405,281,34,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13405,281,34,40])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13405,281,34,40]),types.vector(["bootstrap2012/bootstrap-teachpack",13406,281,35,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13703,285,34,64]),types.vector(["bootstrap2012/bootstrap-teachpack",13712,285,43,54]),types.vector(["bootstrap2012/bootstrap-teachpack",13703,285,34,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13703,285,34,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13703,285,34,64]),types.vector(["bootstrap2012/bootstrap-teachpack",13704,285,35,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13802,286,34,64]),types.vector(["bootstrap2012/bootstrap-teachpack",13811,286,43,54]),types.vector(["bootstrap2012/bootstrap-teachpack",13802,286,34,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13802,286,34,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13802,286,34,64]),types.vector(["bootstrap2012/bootstrap-teachpack",13803,286,35,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13901,287,34,79]),types.vector(["bootstrap2012/bootstrap-teachpack",13914,287,47,65]),types.vector(["bootstrap2012/bootstrap-teachpack",13901,287,34,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13901,287,34,79])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",13901,287,34,79]),types.vector(["bootstrap2012/bootstrap-teachpack",13902,287,35,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,5,6,7,8,9,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14123,290,34,206]),types.vector(["bootstrap2012/bootstrap-teachpack",14130,290,41,198]),types.vector(["bootstrap2012/bootstrap-teachpack",14123,290,34,206])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14123,290,34,206])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",14123,290,34,206]),types.vector(["bootstrap2012/bootstrap-teachpack",14124,290,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14529,296,33,2]),types.vector(["bootstrap2012/bootstrap-teachpack",14532,296,36,15]),types.vector(["bootstrap2012/bootstrap-teachpack",14548,296,52,10]),types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14529,296,33,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14533,296,37,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14545,296,49,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14532,296,36,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14532,296,36,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14533,296,37,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14548,296,52,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14528,296,32,31])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14596,297,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14598,297,35,15]),types.vector(["bootstrap2012/bootstrap-teachpack",14614,297,51,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14596,297,33,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14599,297,36,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14611,297,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14598,297,35,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14598,297,35,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14599,297,36,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14595,297,32,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14650,298,33,10]),types.vector(["bootstrap2012/bootstrap-teachpack",14661,298,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14669,298,52,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14681,298,64,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14689,298,72,6]),types.vector(["bootstrap2012/bootstrap-teachpack",14696,298,79,2]),types.vector(["bootstrap2012/bootstrap-teachpack",14744,299,44,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14750,299,50,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14756,299,56,12]),types.vector(["bootstrap2012/bootstrap-teachpack",14649,298,32,120])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14649,298,32,120])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14650,298,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14757,299,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14759,299,59,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14765,299,65,2]),types.vector(["bootstrap2012/bootstrap-teachpack",14756,299,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14756,299,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14757,299,57,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14804,300,33,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14812,300,41,6]),types.vector(["bootstrap2012/bootstrap-teachpack",14819,300,48,17]),types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14820,300,49,13]),types.vector(["bootstrap2012/bootstrap-teachpack",14834,300,63,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14819,300,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14819,300,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14820,300,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14803,300,32,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14871,301,33,10]),types.vector(["bootstrap2012/bootstrap-teachpack",14882,301,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14890,301,52,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14902,301,64,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14910,301,72,6]),types.vector(["bootstrap2012/bootstrap-teachpack",14917,301,79,2]),types.vector(["bootstrap2012/bootstrap-teachpack",14965,302,44,28]),types.vector(["bootstrap2012/bootstrap-teachpack",14994,302,73,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15000,302,79,3]),types.vector(["bootstrap2012/bootstrap-teachpack",14870,301,32,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14870,301,32,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14871,301,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14966,302,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14968,302,47,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14974,302,53,18]),types.vector(["bootstrap2012/bootstrap-teachpack",14965,302,44,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14965,302,44,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14966,302,45,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14974,302,53,18])}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15039,303,33,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15047,303,41,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15054,303,48,17]),types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15055,303,49,13]),types.vector(["bootstrap2012/bootstrap-teachpack",15069,303,63,1]),types.vector(["bootstrap2012/bootstrap-teachpack",15054,303,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15054,303,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15055,303,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15038,303,32,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15106,304,33,10]),types.vector(["bootstrap2012/bootstrap-teachpack",15117,304,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15125,304,52,11]),types.vector(["bootstrap2012/bootstrap-teachpack",15137,304,64,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15145,304,72,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15152,304,79,2]),types.vector(["bootstrap2012/bootstrap-teachpack",15200,305,44,28]),types.vector(["bootstrap2012/bootstrap-teachpack",15229,305,73,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15235,305,79,15]),types.vector(["bootstrap2012/bootstrap-teachpack",15105,304,32,146])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15105,304,32,146])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15106,304,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15201,305,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",15203,305,47,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15209,305,53,18]),types.vector(["bootstrap2012/bootstrap-teachpack",15200,305,44,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15200,305,44,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15201,305,45,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15209,305,53,18])}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15236,305,80,11]),types.vector(["bootstrap2012/bootstrap-teachpack",15248,305,92,1]),types.vector(["bootstrap2012/bootstrap-teachpack",15235,305,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15235,305,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15236,305,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15285,306,32,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",15291,306,38,10]),types.vector(["bootstrap2012/bootstrap-teachpack",15302,306,49,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15310,306,57,11]),types.vector(["bootstrap2012/bootstrap-teachpack",15322,306,69,7]),types.vector(["bootstrap2012/bootstrap-teachpack",15330,306,77,6]),types.vector(["bootstrap2012/bootstrap-teachpack",15337,306,84,2]),types.vector(["bootstrap2012/bootstrap-teachpack",15390,307,49,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15396,307,55,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15402,307,61,5]),types.vector(["bootstrap2012/bootstrap-teachpack",15290,306,37,118])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",15290,306,37,118])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",15291,306,38,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920]),types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920]),types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14490,295,29,920])}]}}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14131,290,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14133,290,44,15]),types.vector(["bootstrap2012/bootstrap-teachpack",14193,291,44,134]),types.vector(["bootstrap2012/bootstrap-teachpack",14130,290,41,198])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14130,290,41,198])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14131,290,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14134,290,45,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14146,290,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14133,290,44,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14133,290,44,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14134,290,45,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14194,291,45,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14198,291,49,5]),types.vector(["bootstrap2012/bootstrap-teachpack",14204,291,55,36]),types.vector(["bootstrap2012/bootstrap-teachpack",14241,291,92,15]),types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14198,291,49,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",14205,291,56,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14207,291,58,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14211,291,62,7]),types.vector(["bootstrap2012/bootstrap-teachpack",14219,291,70,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14221,291,72,17]),types.vector(["bootstrap2012/bootstrap-teachpack",14210,291,61,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14210,291,61,29])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14222,291,73,13]),types.vector(["bootstrap2012/bootstrap-teachpack",14236,291,87,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14221,291,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14221,291,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14222,291,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",14242,291,93,11]),types.vector(["bootstrap2012/bootstrap-teachpack",14254,291,105,1]),types.vector(["bootstrap2012/bootstrap-teachpack",14241,291,92,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14241,291,92,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14242,291,93,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",14197,291,48,60])}]}}},"then":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",14306,292,48,18])},"else":{"$":"constant","value":0}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13915,287,48,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13927,287,60,22]),types.vector(["bootstrap2012/bootstrap-teachpack",13950,287,83,10]),types.vector(["bootstrap2012/bootstrap-teachpack",13961,287,94,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13914,287,47,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13914,287,47,65])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13928,287,61,4]),types.vector(["bootstrap2012/bootstrap-teachpack",13933,287,66,15]),types.vector(["bootstrap2012/bootstrap-teachpack",13927,287,60,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13927,287,60,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13928,287,61,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13934,287,67,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13946,287,79,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13933,287,66,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13933,287,66,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13934,287,67,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13812,286,44,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13824,286,56,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13842,286,74,8]),types.vector(["bootstrap2012/bootstrap-teachpack",13851,286,83,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13811,286,43,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13811,286,43,54])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13825,286,57,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13839,286,71,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13824,286,56,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13824,286,56,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13825,286,57,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13713,285,44,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13725,285,56,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13743,285,74,8]),types.vector(["bootstrap2012/bootstrap-teachpack",13752,285,83,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13712,285,43,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13712,285,43,54])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13726,285,57,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13740,285,71,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13725,285,56,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13725,285,56,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13726,285,57,13])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13416,281,45,4]),types.vector(["bootstrap2012/bootstrap-teachpack",13421,281,50,6]),types.vector(["bootstrap2012/bootstrap-teachpack",13428,281,57,15]),types.vector(["bootstrap2012/bootstrap-teachpack",13415,281,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13415,281,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13416,281,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13429,281,58,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13441,281,70,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13428,281,57,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13428,281,57,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13429,281,58,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13326,280,47,6]),types.vector(["bootstrap2012/bootstrap-teachpack",13333,280,54,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13351,280,72,17]),types.vector(["bootstrap2012/bootstrap-teachpack",13325,280,46,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13325,280,46,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13326,280,47,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13334,280,55,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13348,280,69,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13333,280,54,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13333,280,54,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13334,280,55,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13352,280,73,13]),types.vector(["bootstrap2012/bootstrap-teachpack",13366,280,87,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13351,280,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13351,280,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13352,280,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13162,278,42,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13174,278,54,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13161,278,41,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13161,278,41,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13162,278,42,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13104,277,42,11]),types.vector(["bootstrap2012/bootstrap-teachpack",13116,277,54,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13103,277,41,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13103,277,41,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13104,277,42,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",13049,276,39,8]),types.vector(["bootstrap2012/bootstrap-teachpack",13058,276,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",13048,276,38,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",13048,276,38,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",13049,276,39,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12993,275,43,12]),types.vector(["bootstrap2012/bootstrap-teachpack",13006,275,56,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12992,275,42,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12992,275,42,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12993,275,43,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12827,271,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",12835,271,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12837,271,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12839,271,29,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[8],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12843,271,33,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12852,271,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12854,271,44,3]),types.vector(["bootstrap2012/bootstrap-teachpack",12842,271,32,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12842,271,32,16])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12439,264,18,6]),types.vector(["bootstrap2012/bootstrap-teachpack",12447,264,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12449,264,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12451,264,30,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12501,266,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12503,266,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12505,266,26,9]),types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12501,266,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":6,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12505,266,26,9])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12500,266,21,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12517,266,38,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12526,266,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12528,266,49,7]),types.vector(["bootstrap2012/bootstrap-teachpack",12516,266,37,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12516,266,37,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12560,267,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12562,267,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12564,267,26,10]),types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12560,267,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":6,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12564,267,26,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12559,267,21,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12577,267,39,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12586,267,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12588,267,50,6]),types.vector(["bootstrap2012/bootstrap-teachpack",12576,267,38,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12576,267,38,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12619,268,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12621,268,24,34]),types.vector(["bootstrap2012/bootstrap-teachpack",12656,268,59,9]),types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12619,268,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12622,268,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12624,268,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12626,268,29,28]),types.vector(["bootstrap2012/bootstrap-teachpack",12621,268,24,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12621,268,24,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12622,268,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":8,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12626,268,29,28])}]}}},{"$":"toplevel","depth":6,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12656,268,59,9])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12618,268,21,48])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12668,268,71,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12677,268,80,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12679,268,82,6]),types.vector(["bootstrap2012/bootstrap-teachpack",12667,268,70,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12667,268,70,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12710,269,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12712,269,24,34]),types.vector(["bootstrap2012/bootstrap-teachpack",12747,269,59,10]),types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12710,269,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12713,269,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12715,269,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12717,269,29,28]),types.vector(["bootstrap2012/bootstrap-teachpack",12712,269,24,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12712,269,24,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12713,269,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":8,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12717,269,29,28])}]}}},{"$":"toplevel","depth":6,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12747,269,59,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12709,269,21,49])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12760,269,72,8]),types.vector(["bootstrap2012/bootstrap-teachpack",12769,269,81,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12771,269,83,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12759,269,71,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12759,269,71,17])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12799,270,21,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334]),types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334]),types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12473,265,19,334])}]}}}}}}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11604,251,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11606,251,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11608,251,26,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2,3,7,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11669,253,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11674,253,32,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11683,253,41,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11687,253,45,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11674,253,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11673,253,31,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11669,253,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11693,253,51,2]),types.vector(["bootstrap2012/bootstrap-teachpack",11696,253,54,15]),types.vector(["bootstrap2012/bootstrap-teachpack",11712,253,70,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11693,253,51,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11697,253,55,11]),types.vector(["bootstrap2012/bootstrap-teachpack",11709,253,67,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11696,253,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11696,253,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11697,253,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":10,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11712,253,70,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11692,253,50,31])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11668,253,26,56])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11759,254,27,2]),types.vector(["bootstrap2012/bootstrap-teachpack",11762,254,30,15]),types.vector(["bootstrap2012/bootstrap-teachpack",11778,254,46,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11759,254,27,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11763,254,31,11]),types.vector(["bootstrap2012/bootstrap-teachpack",11775,254,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11762,254,30,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11762,254,30,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11763,254,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11778,254,46,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11758,254,26,31])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11820,255,27,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11829,255,36,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11833,255,40,9]),types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11820,255,27,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"release"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11819,255,26,24])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11874,256,27,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11883,256,36,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11887,256,40,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11874,256,27,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"escape"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11873,256,26,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11898,256,51,16]),types.vector(["bootstrap2012/bootstrap-teachpack",11915,256,68,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11917,256,70,2]),types.vector(["bootstrap2012/bootstrap-teachpack",11897,256,50,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11897,256,50,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11898,256,51,16])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11949,257,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11954,257,32,8]),types.vector(["bootstrap2012/bootstrap-teachpack",11963,257,41,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11967,257,45,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11954,257,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11953,257,31,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11949,257,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12004,258,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12086,259,36,3]),types.vector(["bootstrap2012/bootstrap-teachpack",12090,259,40,32]),types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12086,259,36,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12091,259,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12093,259,43,24]),types.vector(["bootstrap2012/bootstrap-teachpack",12118,259,68,3]),types.vector(["bootstrap2012/bootstrap-teachpack",12090,259,40,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12090,259,40,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12091,259,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12094,259,44,18]),types.vector(["bootstrap2012/bootstrap-teachpack",12113,259,63,3]),types.vector(["bootstrap2012/bootstrap-teachpack",12093,259,43,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12093,259,43,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}},{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12085,259,35,38])}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12004,258,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12008,258,36,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12010,258,38,36]),types.vector(["bootstrap2012/bootstrap-teachpack",12047,258,75,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12008,258,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12011,258,39,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12027,258,55,18]),types.vector(["bootstrap2012/bootstrap-teachpack",12010,258,38,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12010,258,38,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12011,258,39,15])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12007,258,35,42])}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12003,258,31,121])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11948,257,26,177])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12153,260,27,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12170,260,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12172,260,46,151]),types.vector(["bootstrap2012/bootstrap-teachpack",12152,260,26,172])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12152,260,26,172])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12153,260,27,16])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12173,260,47,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12178,260,52,76]),types.vector(["bootstrap2012/bootstrap-teachpack",12307,261,52,15]),types.vector(["bootstrap2012/bootstrap-teachpack",12172,260,46,151])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12172,260,46,151])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12173,260,47,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12179,260,53,10]),types.vector(["bootstrap2012/bootstrap-teachpack",12190,260,64,49]),types.vector(["bootstrap2012/bootstrap-teachpack",12240,260,114,13]),types.vector(["bootstrap2012/bootstrap-teachpack",12178,260,52,76])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12178,260,52,76])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12179,260,53,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12191,260,65,9]),types.vector(["bootstrap2012/bootstrap-teachpack",12201,260,75,18]),types.vector(["bootstrap2012/bootstrap-teachpack",12220,260,94,18]),types.vector(["bootstrap2012/bootstrap-teachpack",12190,260,64,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12190,260,64,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12191,260,65,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12202,260,76,5]),types.vector(["bootstrap2012/bootstrap-teachpack",12208,260,82,10]),types.vector(["bootstrap2012/bootstrap-teachpack",12201,260,75,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12201,260,75,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12202,260,76,5])},"rands":[{"$":"toplevel","depth":9,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12208,260,82,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12221,260,95,5]),types.vector(["bootstrap2012/bootstrap-teachpack",12227,260,101,10]),types.vector(["bootstrap2012/bootstrap-teachpack",12220,260,94,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12220,260,94,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12221,260,95,5])},"rands":[{"$":"toplevel","depth":9,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12227,260,101,10])}]}}}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12308,261,53,11]),types.vector(["bootstrap2012/bootstrap-teachpack",12320,261,65,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12307,261,52,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12307,261,52,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12308,261,53,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12352,262,26,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12358,262,32,17]),types.vector(["bootstrap2012/bootstrap-teachpack",12376,262,50,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12378,262,52,36]),types.vector(["bootstrap2012/bootstrap-teachpack",12357,262,31,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12357,262,31,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12358,262,32,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12379,262,53,13]),types.vector(["bootstrap2012/bootstrap-teachpack",12393,262,67,16]),types.vector(["bootstrap2012/bootstrap-teachpack",12410,262,84,3]),types.vector(["bootstrap2012/bootstrap-teachpack",12378,262,52,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12378,262,52,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",12394,262,68,12]),types.vector(["bootstrap2012/bootstrap-teachpack",12407,262,81,1]),types.vector(["bootstrap2012/bootstrap-teachpack",12393,262,67,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",12393,262,67,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",12394,262,68,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781]),types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781]),types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11636,252,23,781])}]}}}}}}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11459,248,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11470,248,30,7]),types.vector(["bootstrap2012/bootstrap-teachpack",11478,248,38,5]),types.vector(["bootstrap2012/bootstrap-teachpack",11484,248,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",11492,248,52,6]),types.vector(["bootstrap2012/bootstrap-teachpack",11499,248,59,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11510,248,70,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11514,248,74,5]),types.vector(["bootstrap2012/bootstrap-teachpack",11520,248,80,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11458,248,18,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11458,248,18,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11459,248,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"constant","value":types.EMPTY}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11189,243,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11193,243,25,64]),types.vector(["bootstrap2012/bootstrap-teachpack",11283,244,25,27]),types.vector(["bootstrap2012/bootstrap-teachpack",11188,243,20,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11188,243,20,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11189,243,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11194,243,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11197,243,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11203,243,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",11209,243,41,32]),types.vector(["bootstrap2012/bootstrap-teachpack",11242,243,74,13]),types.vector(["bootstrap2012/bootstrap-teachpack",11202,243,34,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11202,243,34,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11203,243,35,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11210,243,42,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11221,243,53,15]),types.vector(["bootstrap2012/bootstrap-teachpack",11237,243,69,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11209,243,41,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11209,243,41,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11210,243,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11222,243,54,9]),types.vector(["bootstrap2012/bootstrap-teachpack",11232,243,64,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11234,243,66,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11221,243,53,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11221,243,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11222,243,54,9])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11284,244,26,7]),types.vector(["bootstrap2012/bootstrap-teachpack",11292,244,34,17]),types.vector(["bootstrap2012/bootstrap-teachpack",11283,244,25,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11283,244,25,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11284,244,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11293,244,35,4]),types.vector(["bootstrap2012/bootstrap-teachpack",11298,244,40,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11292,244,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11292,244,34,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11293,244,35,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11044,241,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11048,241,25,64]),types.vector(["bootstrap2012/bootstrap-teachpack",11138,242,25,27]),types.vector(["bootstrap2012/bootstrap-teachpack",11043,241,20,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11043,241,20,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11044,241,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",11049,241,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11052,241,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11058,241,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",11064,241,41,32]),types.vector(["bootstrap2012/bootstrap-teachpack",11097,241,74,13]),types.vector(["bootstrap2012/bootstrap-teachpack",11057,241,34,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11057,241,34,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11058,241,35,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11065,241,42,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11076,241,53,15]),types.vector(["bootstrap2012/bootstrap-teachpack",11092,241,69,3]),types.vector(["bootstrap2012/bootstrap-teachpack",11064,241,41,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11064,241,41,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11065,241,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11077,241,54,9]),types.vector(["bootstrap2012/bootstrap-teachpack",11087,241,64,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11089,241,66,1]),types.vector(["bootstrap2012/bootstrap-teachpack",11076,241,53,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11076,241,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11077,241,54,9])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11139,242,26,7]),types.vector(["bootstrap2012/bootstrap-teachpack",11147,242,34,17]),types.vector(["bootstrap2012/bootstrap-teachpack",11138,242,25,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11138,242,25,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11139,242,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",11148,242,35,4]),types.vector(["bootstrap2012/bootstrap-teachpack",11153,242,40,10]),types.vector(["bootstrap2012/bootstrap-teachpack",11147,242,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",11147,242,34,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",11148,242,35,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10717,235,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10720,235,28,5]),types.vector(["bootstrap2012/bootstrap-teachpack",10726,235,34,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10734,235,42,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10767,236,25,3]),types.vector(["bootstrap2012/bootstrap-teachpack",10771,236,29,126]),types.vector(["bootstrap2012/bootstrap-teachpack",10927,238,29,5]),types.vector(["bootstrap2012/bootstrap-teachpack",10766,236,24,167])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10766,236,24,167])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10767,236,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10772,236,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10775,236,33,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,3,4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10779,236,37,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10783,236,41,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10788,236,46,9]),types.vector(["bootstrap2012/bootstrap-teachpack",10798,236,56,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10787,236,45,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10783,236,41,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10802,236,60,3]),types.vector(["bootstrap2012/bootstrap-teachpack",10806,236,64,19]),types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10802,236,60,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10807,236,65,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10815,236,73,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10817,236,75,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10806,236,64,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10806,236,64,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10801,236,59,25])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10782,236,40,45])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10869,237,41,6]),types.vector(["bootstrap2012/bootstrap-teachpack",10876,237,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10868,237,40,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10868,237,40,10])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10880,237,52,5]),types.vector(["bootstrap2012/bootstrap-teachpack",10886,237,58,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10888,237,60,6]),types.vector(["bootstrap2012/bootstrap-teachpack",10879,237,51,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10879,237,51,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10880,237,52,5])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10542,232,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10545,232,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10547,232,26,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10557,232,36,5]),types.vector(["bootstrap2012/bootstrap-teachpack",10563,232,42,22]),types.vector(["bootstrap2012/bootstrap-teachpack",10586,232,65,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10556,232,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10556,232,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10557,232,36,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10564,232,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10567,232,46,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10571,232,50,8]),types.vector(["bootstrap2012/bootstrap-teachpack",10580,232,59,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10582,232,61,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10570,232,49,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10570,232,49,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10330,228,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10333,228,25,2]),types.vector(["bootstrap2012/bootstrap-teachpack",10336,228,28,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10341,228,33,9]),types.vector(["bootstrap2012/bootstrap-teachpack",10351,228,43,12]),types.vector(["bootstrap2012/bootstrap-teachpack",10364,228,56,12]),types.vector(["bootstrap2012/bootstrap-teachpack",10421,229,43,12]),types.vector(["bootstrap2012/bootstrap-teachpack",10434,229,56,12]),types.vector(["bootstrap2012/bootstrap-teachpack",10340,228,32,107])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10340,228,32,107])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10352,228,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10360,228,52,2]),types.vector(["bootstrap2012/bootstrap-teachpack",10351,228,43,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10351,228,43,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10352,228,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10365,228,57,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10373,228,65,2]),types.vector(["bootstrap2012/bootstrap-teachpack",10364,228,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10364,228,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10365,228,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10422,229,44,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10430,229,52,2]),types.vector(["bootstrap2012/bootstrap-teachpack",10421,229,43,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10421,229,43,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10422,229,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10435,229,57,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10443,229,65,2]),types.vector(["bootstrap2012/bootstrap-teachpack",10434,229,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10434,229,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10435,229,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10137,225,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10141,225,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10143,225,29,28]),types.vector(["bootstrap2012/bootstrap-teachpack",10172,225,58,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10141,225,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10144,225,30,15]),types.vector(["bootstrap2012/bootstrap-teachpack",10160,225,46,10]),types.vector(["bootstrap2012/bootstrap-teachpack",10143,225,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10143,225,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10144,225,30,15])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10140,225,26,34])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10203,226,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10206,226,30,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10210,226,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",10221,226,45,11]),types.vector(["bootstrap2012/bootstrap-teachpack",10209,226,33,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10209,226,33,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10222,226,46,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10230,226,54,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10221,226,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10221,226,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10222,226,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",10262,227,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10265,227,30,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10269,227,34,10]),types.vector(["bootstrap2012/bootstrap-teachpack",10280,227,45,11]),types.vector(["bootstrap2012/bootstrap-teachpack",10292,227,57,11]),types.vector(["bootstrap2012/bootstrap-teachpack",10268,227,33,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10268,227,33,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10281,227,46,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10289,227,54,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10280,227,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10280,227,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10281,227,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10293,227,58,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10301,227,66,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10292,227,57,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10292,227,57,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10293,227,58,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",9794,220,13,6]),types.vector(["bootstrap2012/bootstrap-teachpack",9802,220,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9804,220,23,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9808,220,27,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9861,221,27,204]),types.vector(["bootstrap2012/bootstrap-teachpack",10093,224,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",9807,220,26,304])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9807,220,26,304])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9808,220,27,10])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9862,221,28,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9866,221,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9868,221,34,32]),types.vector(["bootstrap2012/bootstrap-teachpack",9901,221,67,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9866,221,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9869,221,35,15]),types.vector(["bootstrap2012/bootstrap-teachpack",9885,221,51,14]),types.vector(["bootstrap2012/bootstrap-teachpack",9868,221,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9868,221,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9869,221,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9865,221,31,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9937,222,32,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9947,222,42,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9959,222,54,30]),types.vector(["bootstrap2012/bootstrap-teachpack",9936,222,31,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9936,222,31,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9937,222,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9948,222,43,7]),types.vector(["bootstrap2012/bootstrap-teachpack",9956,222,51,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9947,222,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9947,222,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9948,222,43,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9960,222,55,14]),types.vector(["bootstrap2012/bootstrap-teachpack",9975,222,70,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9987,222,82,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9959,222,54,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9959,222,54,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9976,222,71,7]),types.vector(["bootstrap2012/bootstrap-teachpack",9984,222,79,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9975,222,70,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9975,222,70,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9976,222,71,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10023,223,32,14]),types.vector(["bootstrap2012/bootstrap-teachpack",10038,223,47,11]),types.vector(["bootstrap2012/bootstrap-teachpack",10050,223,59,11]),types.vector(["bootstrap2012/bootstrap-teachpack",10062,223,71,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10022,223,31,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10022,223,31,42])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10039,223,48,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10047,223,56,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10038,223,47,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10038,223,47,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10039,223,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10051,223,60,7]),types.vector(["bootstrap2012/bootstrap-teachpack",10059,223,68,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10050,223,59,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10050,223,59,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10051,223,60,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",10094,224,28,13]),types.vector(["bootstrap2012/bootstrap-teachpack",10108,224,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",10093,224,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",10093,224,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",10094,224,28,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9721,218,31,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9733,218,43,18]),types.vector(["bootstrap2012/bootstrap-teachpack",9720,218,30,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9720,218,30,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9721,218,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9661,217,27,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9673,217,39,14]),types.vector(["bootstrap2012/bootstrap-teachpack",9660,217,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9660,217,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9661,217,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9605,216,27,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9617,216,39,14]),types.vector(["bootstrap2012/bootstrap-teachpack",9604,216,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9604,216,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9605,216,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9434,213,20,10]),types.vector(["bootstrap2012/bootstrap-teachpack",9445,213,31,36]),types.vector(["bootstrap2012/bootstrap-teachpack",9482,213,68,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9433,213,19,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9433,213,19,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9434,213,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9446,213,32,9]),types.vector(["bootstrap2012/bootstrap-teachpack",9456,213,42,11]),types.vector(["bootstrap2012/bootstrap-teachpack",9468,213,54,12]),types.vector(["bootstrap2012/bootstrap-teachpack",9445,213,31,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9445,213,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9446,213,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9457,213,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9459,213,45,5]),types.vector(["bootstrap2012/bootstrap-teachpack",9465,213,51,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9456,213,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9456,213,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9457,213,43,1])},"rands":[{"$":"toplevel","depth":7,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9459,213,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",9469,213,55,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9471,213,57,6]),types.vector(["bootstrap2012/bootstrap-teachpack",9478,213,64,1]),types.vector(["bootstrap2012/bootstrap-teachpack",9468,213,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",9468,213,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9469,213,55,1])},"rands":[{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",9471,213,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16469,350,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",16469,350,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16474,350,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16492,352,5,10]),types.vector(["bootstrap2012/bootstrap-teachpack",16503,352,16,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":180,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16492,352,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16491,352,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16525,353,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",16533,353,13,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":194,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16525,353,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16524,353,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16553,354,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",16561,354,13,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16553,354,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16552,354,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16581,355,5,6]),types.vector(["bootstrap2012/bootstrap-teachpack",16588,355,12,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":214,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16581,355,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16580,355,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16607,356,5,8]),types.vector(["bootstrap2012/bootstrap-teachpack",16616,356,14,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16607,356,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16606,356,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16637,357,5,5]),types.vector(["bootstrap2012/bootstrap-teachpack",16643,357,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16637,357,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16636,357,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16665,358,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",16673,358,13,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":164,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16665,358,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16664,358,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16693,359,5,5]),types.vector(["bootstrap2012/bootstrap-teachpack",16699,359,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":202,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16693,359,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16692,359,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16717,360,5,5]),types.vector(["bootstrap2012/bootstrap-teachpack",16723,360,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16717,360,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16716,360,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16741,361,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",16749,361,13,3]),types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16741,361,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16740,361,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16771,362,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312]),types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312]),types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",16481,351,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17260,373,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",17260,373,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17272,373,21,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17274,373,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17276,373,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17290,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17295,374,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17297,374,10,41]),types.vector(["bootstrap2012/bootstrap-teachpack",17339,374,52,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17295,374,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17298,374,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",17302,374,15,35]),types.vector(["bootstrap2012/bootstrap-teachpack",17297,374,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17297,374,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17298,374,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17303,374,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17305,374,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17321,374,34,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17302,374,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17302,374,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17303,374,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17306,374,19,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17318,374,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17305,374,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17305,374,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17306,374,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17322,374,35,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17334,374,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17321,374,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17321,374,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17322,374,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17294,374,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17290,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17358,375,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17360,375,10,41]),types.vector(["bootstrap2012/bootstrap-teachpack",17402,375,52,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17358,375,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17361,375,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",17365,375,15,35]),types.vector(["bootstrap2012/bootstrap-teachpack",17360,375,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17360,375,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17361,375,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17366,375,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17368,375,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17384,375,34,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17365,375,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17365,375,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17366,375,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17369,375,19,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17381,375,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17368,375,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17368,375,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17369,375,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17385,375,35,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17397,375,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17384,375,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17384,375,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17385,375,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17357,375,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17290,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17421,376,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17423,376,10,41]),types.vector(["bootstrap2012/bootstrap-teachpack",17465,376,52,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17421,376,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17424,376,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",17428,376,15,35]),types.vector(["bootstrap2012/bootstrap-teachpack",17423,376,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17423,376,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17424,376,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17429,376,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17431,376,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17447,376,34,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17428,376,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17428,376,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17429,376,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17432,376,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",17444,376,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17431,376,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17431,376,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17432,376,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17448,376,35,10]),types.vector(["bootstrap2012/bootstrap-teachpack",17460,376,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17447,376,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17447,376,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17448,376,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17420,376,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17290,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17484,377,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17486,377,10,41]),types.vector(["bootstrap2012/bootstrap-teachpack",17528,377,52,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17484,377,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17487,377,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",17491,377,15,35]),types.vector(["bootstrap2012/bootstrap-teachpack",17486,377,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17486,377,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17487,377,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17492,377,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17494,377,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17510,377,34,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17491,377,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17491,377,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17492,377,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17495,377,19,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17507,377,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17494,377,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17494,377,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17495,377,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17511,377,35,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17523,377,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17510,377,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17510,377,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17511,377,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17483,377,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17633,381,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",17633,381,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",17641,381,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17643,381,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17649,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17654,382,8,6]),types.vector(["bootstrap2012/bootstrap-teachpack",17661,382,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17677,382,31,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17654,382,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17662,382,16,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17674,382,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17661,382,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17661,382,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17662,382,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17678,382,32,9]),types.vector(["bootstrap2012/bootstrap-teachpack",17690,382,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17677,382,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17677,382,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17678,382,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17653,382,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17649,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17702,383,8,6]),types.vector(["bootstrap2012/bootstrap-teachpack",17709,383,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17725,383,31,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17702,383,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17710,383,16,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17722,383,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17709,383,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17709,383,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17710,383,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17726,383,32,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17738,383,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17725,383,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17725,383,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17726,383,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17701,383,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17649,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17750,384,8,6]),types.vector(["bootstrap2012/bootstrap-teachpack",17757,384,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17773,384,31,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17750,384,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17758,384,16,10]),types.vector(["bootstrap2012/bootstrap-teachpack",17770,384,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17757,384,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17757,384,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17758,384,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17774,384,32,10]),types.vector(["bootstrap2012/bootstrap-teachpack",17786,384,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17773,384,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17773,384,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17774,384,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17749,384,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17649,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17798,385,8,6]),types.vector(["bootstrap2012/bootstrap-teachpack",17805,385,15,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17821,385,31,15]),types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17798,385,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17806,385,16,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17818,385,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17805,385,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17805,385,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17806,385,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",17822,385,32,11]),types.vector(["bootstrap2012/bootstrap-teachpack",17834,385,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",17821,385,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17821,385,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",17822,385,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",17797,385,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18386,398,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18386,398,9,10]),types.vector(["bootstrap2012/bootstrap-teachpack",18397,398,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18413,400,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18421,400,13,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18413,400,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18412,400,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18429,401,5,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18441,401,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18428,401,4,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18428,401,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18429,401,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18449,402,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59]),types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59]),types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18402,399,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18474,406,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18474,406,9,15]),types.vector(["bootstrap2012/bootstrap-teachpack",18490,406,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18492,406,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18494,406,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18496,406,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18502,407,3,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18504,407,5,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18512,407,13,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18501,407,2,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18501,407,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18502,407,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18505,407,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18507,407,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18509,407,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18504,407,5,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18504,407,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18505,407,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18526,409,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18526,409,9,22]),types.vector(["bootstrap2012/bootstrap-teachpack",18549,409,32,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18556,409,39,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18560,409,43,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18566,409,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18576,410,2,345]),types.vector(["bootstrap2012/bootstrap-teachpack",18585,410,11,21]),types.vector(["bootstrap2012/bootstrap-teachpack",18619,411,11,21]),types.vector(["bootstrap2012/bootstrap-teachpack",18655,412,13,49]),types.vector(["bootstrap2012/bootstrap-teachpack",18576,410,2,345])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18576,410,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18576,410,2,345]),types.vector(["bootstrap2012/bootstrap-teachpack",18583,410,9,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18617,411,9,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18651,412,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18712,413,5,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18724,414,5,39]),types.vector(["bootstrap2012/bootstrap-teachpack",18769,415,5,39]),types.vector(["bootstrap2012/bootstrap-teachpack",18814,416,5,49]),types.vector(["bootstrap2012/bootstrap-teachpack",18869,417,5,50]),types.vector(["bootstrap2012/bootstrap-teachpack",18711,413,4,209])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18711,413,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18712,413,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18725,414,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18729,414,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18731,414,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18733,414,14,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18729,414,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18728,414,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18737,414,18,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18742,414,23,15]),types.vector(["bootstrap2012/bootstrap-teachpack",18736,414,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18736,414,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18737,414,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18743,414,24,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18747,414,28,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18755,414,36,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18742,414,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18742,414,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18748,414,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18750,414,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18752,414,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18747,414,28,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18747,414,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18748,414,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18770,415,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18774,415,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18776,415,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18778,415,14,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18774,415,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18773,415,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18782,415,18,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18787,415,23,15]),types.vector(["bootstrap2012/bootstrap-teachpack",18781,415,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18781,415,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18782,415,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18788,415,24,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18792,415,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18794,415,30,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18787,415,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18787,415,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18795,415,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18797,415,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18799,415,35,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18794,415,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18794,415,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18795,415,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18815,416,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18819,416,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18821,416,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18823,416,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18819,416,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18824,416,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18826,416,17,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18832,416,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18823,416,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18823,416,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18824,416,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18818,416,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18837,416,28,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18842,416,33,15]),types.vector(["bootstrap2012/bootstrap-teachpack",18836,416,27,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18836,416,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18837,416,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18843,416,34,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18847,416,38,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18855,416,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18842,416,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18842,416,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18848,416,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18850,416,41,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18852,416,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18847,416,38,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18847,416,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18848,416,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18870,417,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18874,417,10,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18876,417,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18878,417,14,12]),types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18874,417,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18879,417,15,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18881,417,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18888,417,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18878,417,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18878,417,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18879,417,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18873,417,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18893,417,29,4]),types.vector(["bootstrap2012/bootstrap-teachpack",18898,417,34,15]),types.vector(["bootstrap2012/bootstrap-teachpack",18892,417,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18892,417,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18893,417,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18899,417,35,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18903,417,39,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18905,417,41,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18898,417,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18898,417,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18906,417,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18908,417,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18910,417,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18905,417,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18905,417,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18906,417,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18586,410,12,9]),types.vector(["bootstrap2012/bootstrap-teachpack",18596,410,22,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18600,410,26,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18585,410,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18585,410,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18586,410,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18620,411,12,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18626,411,18,13]),types.vector(["bootstrap2012/bootstrap-teachpack",18619,411,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18619,411,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":221,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18620,411,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18627,411,19,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18629,411,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",18633,411,25,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18626,411,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18626,411,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18627,411,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18656,412,14,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18664,412,22,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18666,412,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",18670,412,28,15]),types.vector(["bootstrap2012/bootstrap-teachpack",18686,412,44,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18688,412,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",18690,412,48,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18696,412,54,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18669,412,27,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",18669,412,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18670,412,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",18933,419,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",18933,419,9,22]),types.vector(["bootstrap2012/bootstrap-teachpack",18956,419,32,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18963,419,39,5]),types.vector(["bootstrap2012/bootstrap-teachpack",18969,419,45,6]),types.vector(["bootstrap2012/bootstrap-teachpack",18976,419,52,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18984,419,60,7]),types.vector(["bootstrap2012/bootstrap-teachpack",18992,419,68,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19004,419,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19017,420,2,973]),types.vector(["bootstrap2012/bootstrap-teachpack",19030,420,15,53]),types.vector(["bootstrap2012/bootstrap-teachpack",19099,421,14,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19126,422,14,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19017,420,2,973])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19017,420,2,973])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",19017,420,2,973]),types.vector(["bootstrap2012/bootstrap-teachpack",19024,420,9,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19094,421,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19121,422,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",19159,424,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19216,426,25,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19220,426,29,14]),types.vector(["bootstrap2012/bootstrap-teachpack",19215,426,24,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19215,426,24,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19216,426,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19221,426,30,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19228,426,37,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19220,426,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19220,426,29,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":220,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19221,426,30,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19256,427,20,701]),types.vector(["bootstrap2012/bootstrap-teachpack",19266,427,30,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19256,427,20,701])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19256,427,20,701])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",19256,427,20,701]),types.vector(["bootstrap2012/bootstrap-teachpack",19263,427,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19334,429,25,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19339,429,30,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19345,429,36,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19333,429,24,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19333,429,24,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19334,429,25,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19346,429,37,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19350,429,41,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19345,429,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19345,429,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":233,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19346,429,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19389,430,31,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19393,430,35,21]),types.vector(["bootstrap2012/bootstrap-teachpack",19388,430,30,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19388,430,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19389,430,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19394,430,36,8]),types.vector(["bootstrap2012/bootstrap-teachpack",19403,430,45,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19408,430,50,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19411,430,53,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19393,430,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19393,430,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":218,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19394,430,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19478,432,29,9]),types.vector(["bootstrap2012/bootstrap-teachpack",19488,432,39,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19493,432,44,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19496,432,47,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19477,432,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19477,432,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":216,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19478,432,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19529,433,29,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19534,433,34,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19539,433,39,14]),types.vector(["bootstrap2012/bootstrap-teachpack",19528,433,28,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19528,433,28,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19529,433,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19540,433,40,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19545,433,45,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19548,433,48,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19539,433,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19539,433,39,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19540,433,40,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19584,434,29,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19589,434,34,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19630,435,34,291]),types.vector(["bootstrap2012/bootstrap-teachpack",19583,434,28,339])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19583,434,28,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19584,434,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19631,435,35,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19638,435,42,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19686,436,42,234]),types.vector(["bootstrap2012/bootstrap-teachpack",19630,435,34,291])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19630,435,34,291])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19631,435,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19687,436,43,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19694,436,50,127]),types.vector(["bootstrap2012/bootstrap-teachpack",19872,438,50,47]),types.vector(["bootstrap2012/bootstrap-teachpack",19686,436,42,234])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19686,436,42,234])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":222,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19687,436,43,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",19695,436,51,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19703,436,59,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6,8,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19762,437,53,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19774,437,65,23]),types.vector(["bootstrap2012/bootstrap-teachpack",19798,437,89,11]),types.vector(["bootstrap2012/bootstrap-teachpack",19810,437,101,9]),types.vector(["bootstrap2012/bootstrap-teachpack",19761,437,52,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19761,437,52,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19762,437,53,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19775,437,66,10]),types.vector(["bootstrap2012/bootstrap-teachpack",19786,437,77,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19793,437,84,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19774,437,65,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19774,437,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19775,437,66,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19873,438,51,22]),types.vector(["bootstrap2012/bootstrap-teachpack",19896,438,74,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19903,438,81,2]),types.vector(["bootstrap2012/bootstrap-teachpack",19906,438,84,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19912,438,90,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19872,438,50,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19872,438,50,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19873,438,51,22])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19382,430,24,542]),types.vector(["bootstrap2012/bootstrap-teachpack",19382,430,24,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19382,430,24,542])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19382,430,24,542])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19950,439,25,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19949,439,24,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19949,439,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19267,427,31,3]),types.vector(["bootstrap2012/bootstrap-teachpack",19271,427,35,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19266,427,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19266,427,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":235,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19267,427,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19209,426,18,749]),types.vector(["bootstrap2012/bootstrap-teachpack",19209,426,18,749])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19209,426,18,749])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19209,426,18,749])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19971,440,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19970,440,8,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19970,440,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19031,420,16,4]),types.vector(["bootstrap2012/bootstrap-teachpack",19036,420,21,46]),types.vector(["bootstrap2012/bootstrap-teachpack",19030,420,15,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19030,420,15,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19031,420,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19037,420,22,15]),types.vector(["bootstrap2012/bootstrap-teachpack",19053,420,38,7]),types.vector(["bootstrap2012/bootstrap-teachpack",19061,420,46,7]),types.vector(["bootstrap2012/bootstrap-teachpack",19069,420,54,5]),types.vector(["bootstrap2012/bootstrap-teachpack",19075,420,60,6]),types.vector(["bootstrap2012/bootstrap-teachpack",19036,420,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19036,420,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19037,420,22,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",19100,421,15,9]),types.vector(["bootstrap2012/bootstrap-teachpack",19099,421,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",19099,421,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":203,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",19100,421,15,9])},"rands":[]}}},{"$":"constant","value":types.EMPTY}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20002,443,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20002,443,9,16]),types.vector(["bootstrap2012/bootstrap-teachpack",20019,443,26,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20023,443,30,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20031,443,38,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20039,443,46,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20052,443,59,17]),types.vector(["bootstrap2012/bootstrap-teachpack",20070,443,77,9]),types.vector(["bootstrap2012/bootstrap-teachpack",20080,443,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20100,444,9,42]),types.vector(["bootstrap2012/bootstrap-teachpack",20103,444,12,38]),types.vector(["bootstrap2012/bootstrap-teachpack",20100,444,9,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20100,444,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20100,444,9,42]),types.vector(["bootstrap2012/bootstrap-teachpack",20101,444,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20152,445,9,25]),types.vector(["bootstrap2012/bootstrap-teachpack",20159,445,16,17]),types.vector(["bootstrap2012/bootstrap-teachpack",20152,445,9,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20152,445,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20152,445,9,25]),types.vector(["bootstrap2012/bootstrap-teachpack",20153,445,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20187,446,9,27]),types.vector(["bootstrap2012/bootstrap-teachpack",20195,446,17,18]),types.vector(["bootstrap2012/bootstrap-teachpack",20187,446,9,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20187,446,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20187,446,9,27]),types.vector(["bootstrap2012/bootstrap-teachpack",20188,446,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20224,447,9,142]),types.vector(["bootstrap2012/bootstrap-teachpack",20227,447,12,138]),types.vector(["bootstrap2012/bootstrap-teachpack",20224,447,9,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20224,447,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20224,447,9,142]),types.vector(["bootstrap2012/bootstrap-teachpack",20225,447,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20376,450,9,34]),types.vector(["bootstrap2012/bootstrap-teachpack",20379,450,12,30]),types.vector(["bootstrap2012/bootstrap-teachpack",20376,450,9,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20376,450,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20376,450,9,34]),types.vector(["bootstrap2012/bootstrap-teachpack",20377,450,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20436,452,13,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20440,452,17,13]),types.vector(["bootstrap2012/bootstrap-teachpack",20435,452,12,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20435,452,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20436,452,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20441,452,18,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20449,452,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20451,452,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20440,452,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20440,452,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20441,452,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20464,453,9,8]),types.vector(["bootstrap2012/bootstrap-teachpack",20473,453,18,36]),types.vector(["bootstrap2012/bootstrap-teachpack",20528,454,18,67]),types.vector(["bootstrap2012/bootstrap-teachpack",20463,453,8,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20463,453,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":219,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20464,453,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20474,453,19,6]),types.vector(["bootstrap2012/bootstrap-teachpack",20482,453,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20488,453,33,11]),types.vector(["bootstrap2012/bootstrap-teachpack",20500,453,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20502,453,47,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20506,453,51,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20487,453,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20487,453,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20488,453,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20529,454,19,22]),types.vector(["bootstrap2012/bootstrap-teachpack",20552,454,42,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20554,454,44,5]),types.vector(["bootstrap2012/bootstrap-teachpack",20560,454,50,6]),types.vector(["bootstrap2012/bootstrap-teachpack",20567,454,57,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20575,454,65,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20583,454,73,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20585,454,75,9]),types.vector(["bootstrap2012/bootstrap-teachpack",20528,454,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20528,454,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20529,454,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20429,452,6,168]),types.vector(["bootstrap2012/bootstrap-teachpack",20429,452,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20429,452,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20429,452,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20605,455,7,18]),types.vector(["bootstrap2012/bootstrap-teachpack",20624,455,26,16]),types.vector(["bootstrap2012/bootstrap-teachpack",20641,455,43,5]),types.vector(["bootstrap2012/bootstrap-teachpack",20647,455,49,6]),types.vector(["bootstrap2012/bootstrap-teachpack",20604,455,6,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20604,455,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":231,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20605,455,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20625,455,27,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20638,455,40,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20624,455,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20624,455,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20625,455,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20380,450,13,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20391,450,24,17]),types.vector(["bootstrap2012/bootstrap-teachpack",20379,450,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20379,450,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20380,450,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20228,447,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20231,447,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20262,448,17,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20273,448,28,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20261,448,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20261,448,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20262,448,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20304,449,17,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20315,449,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20317,449,30,46]),types.vector(["bootstrap2012/bootstrap-teachpack",20303,449,16,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20303,449,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20304,449,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20318,449,31,15]),types.vector(["bootstrap2012/bootstrap-teachpack",20334,449,47,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20342,449,55,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20350,449,63,5]),types.vector(["bootstrap2012/bootstrap-teachpack",20356,449,69,6]),types.vector(["bootstrap2012/bootstrap-teachpack",20317,449,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20317,449,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20318,449,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20196,446,18,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20209,446,31,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20195,446,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20195,446,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20196,446,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20160,445,17,11]),types.vector(["bootstrap2012/bootstrap-teachpack",20172,445,29,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20159,445,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20159,445,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20160,445,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20104,444,13,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20117,444,26,23]),types.vector(["bootstrap2012/bootstrap-teachpack",20103,444,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20103,444,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20104,444,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20118,444,27,17]),types.vector(["bootstrap2012/bootstrap-teachpack",20136,444,45,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20117,444,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20117,444,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20118,444,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20668,457,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20668,457,9,23]),types.vector(["bootstrap2012/bootstrap-teachpack",20692,457,33,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20696,457,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20710,458,3,16]),types.vector(["bootstrap2012/bootstrap-teachpack",20727,458,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20731,458,24,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20733,458,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20735,458,28,2]),types.vector(["bootstrap2012/bootstrap-teachpack",20738,458,31,20]),types.vector(["bootstrap2012/bootstrap-teachpack",20759,458,52,9]),types.vector(["bootstrap2012/bootstrap-teachpack",20769,458,62,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20709,458,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20709,458,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20710,458,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20739,458,32,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20750,458,43,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20752,458,45,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20754,458,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20756,458,49,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20738,458,31,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20738,458,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":205,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20739,458,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20782,459,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20782,459,9,24]),types.vector(["bootstrap2012/bootstrap-teachpack",20807,459,34,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20811,459,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20824,460,2,442]),types.vector(["bootstrap2012/bootstrap-teachpack",20836,460,14,20]),types.vector(["bootstrap2012/bootstrap-teachpack",20879,461,21,2]),types.vector(["bootstrap2012/bootstrap-teachpack",20900,462,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20916,463,13,23]),types.vector(["bootstrap2012/bootstrap-teachpack",20954,464,13,24]),types.vector(["bootstrap2012/bootstrap-teachpack",20824,460,2,442])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20824,460,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",20824,460,2,442]),types.vector(["bootstrap2012/bootstrap-teachpack",20831,460,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",20867,461,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",20892,462,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20912,463,9,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20950,464,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20986,465,5,16]),types.vector(["bootstrap2012/bootstrap-teachpack",21009,466,5,207]),types.vector(["bootstrap2012/bootstrap-teachpack",21222,471,5,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21226,471,9,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21230,471,13,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21242,471,25,4]),types.vector(["bootstrap2012/bootstrap-teachpack",21247,471,30,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21257,471,40,7]),types.vector(["bootstrap2012/bootstrap-teachpack",20985,465,4,280])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20985,465,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20986,465,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21010,466,6,16]),types.vector(["bootstrap2012/bootstrap-teachpack",21033,467,6,135]),types.vector(["bootstrap2012/bootstrap-teachpack",21175,470,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21177,470,8,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21181,470,12,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21193,470,24,4]),types.vector(["bootstrap2012/bootstrap-teachpack",21198,470,29,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21208,470,39,7]),types.vector(["bootstrap2012/bootstrap-teachpack",21009,466,5,207])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21009,466,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21010,466,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21034,467,7,16]),types.vector(["bootstrap2012/bootstrap-teachpack",21058,468,7,61]),types.vector(["bootstrap2012/bootstrap-teachpack",21127,469,7,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21131,469,11,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21133,469,13,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21145,469,25,4]),types.vector(["bootstrap2012/bootstrap-teachpack",21150,469,30,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21160,469,40,7]),types.vector(["bootstrap2012/bootstrap-teachpack",21033,467,6,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21033,467,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21034,467,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21059,468,8,16]),types.vector(["bootstrap2012/bootstrap-teachpack",21076,468,25,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21080,468,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21082,468,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21084,468,33,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21096,468,45,4]),types.vector(["bootstrap2012/bootstrap-teachpack",21101,468,50,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21111,468,60,7]),types.vector(["bootstrap2012/bootstrap-teachpack",21058,468,7,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21058,468,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21059,468,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20837,460,15,10]),types.vector(["bootstrap2012/bootstrap-teachpack",20848,460,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20850,460,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20852,460,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20854,460,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20836,460,14,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20836,460,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":205,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20837,460,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20917,463,14,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20919,463,16,17]),types.vector(["bootstrap2012/bootstrap-teachpack",20937,463,34,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20916,463,13,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20916,463,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20917,463,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20920,463,17,11]),types.vector(["bootstrap2012/bootstrap-teachpack",20932,463,29,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20919,463,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20919,463,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20920,463,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20955,464,14,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20957,464,16,18]),types.vector(["bootstrap2012/bootstrap-teachpack",20976,464,35,1]),types.vector(["bootstrap2012/bootstrap-teachpack",20954,464,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20954,464,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20955,464,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",20958,464,17,12]),types.vector(["bootstrap2012/bootstrap-teachpack",20971,464,30,3]),types.vector(["bootstrap2012/bootstrap-teachpack",20957,464,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",20957,464,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",20958,464,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21435,476,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",21435,476,9,13]),types.vector(["bootstrap2012/bootstrap-teachpack",21449,476,23,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21453,476,27,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21466,476,40,17]),types.vector(["bootstrap2012/bootstrap-teachpack",21484,476,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21497,477,2,299]),types.vector(["bootstrap2012/bootstrap-teachpack",21508,477,13,25]),types.vector(["bootstrap2012/bootstrap-teachpack",21548,478,13,30]),types.vector(["bootstrap2012/bootstrap-teachpack",21497,477,2,299])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21497,477,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",21497,477,2,299]),types.vector(["bootstrap2012/bootstrap-teachpack",21504,477,9,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21544,478,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21586,479,5,18]),types.vector(["bootstrap2012/bootstrap-teachpack",21610,480,5,137]),types.vector(["bootstrap2012/bootstrap-teachpack",21753,485,5,17]),types.vector(["bootstrap2012/bootstrap-teachpack",21776,486,5,18]),types.vector(["bootstrap2012/bootstrap-teachpack",21585,479,4,210])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21585,479,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":231,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21586,479,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21611,480,6,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21615,480,10,97]),types.vector(["bootstrap2012/bootstrap-teachpack",21723,484,10,23]),types.vector(["bootstrap2012/bootstrap-teachpack",21610,480,5,137])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21610,480,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21611,480,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",21616,480,11,6]),types.vector(["bootstrap2012/bootstrap-teachpack",21624,480,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21640,481,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21644,481,17,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21656,481,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21658,481,31,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21662,481,35,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21644,481,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21643,481,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21724,484,11,17]),types.vector(["bootstrap2012/bootstrap-teachpack",21742,484,29,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21723,484,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21723,484,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21724,484,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21754,485,6,11]),types.vector(["bootstrap2012/bootstrap-teachpack",21766,485,18,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21753,485,5,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21753,485,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21754,485,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21777,486,6,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21790,486,19,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21776,486,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21776,486,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21777,486,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21509,477,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",21520,477,25,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21508,477,13,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21508,477,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21509,477,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21549,478,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",21560,478,25,17]),types.vector(["bootstrap2012/bootstrap-teachpack",21548,478,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21548,478,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21549,478,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21919,489,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",21919,489,9,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21932,489,22,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21936,489,26,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21949,489,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21963,490,3,13]),types.vector(["bootstrap2012/bootstrap-teachpack",21977,490,17,3]),types.vector(["bootstrap2012/bootstrap-teachpack",21981,490,21,12]),types.vector(["bootstrap2012/bootstrap-teachpack",21994,490,34,20]),types.vector(["bootstrap2012/bootstrap-teachpack",22015,490,55,9]),types.vector(["bootstrap2012/bootstrap-teachpack",21962,490,2,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21962,490,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21963,490,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",21995,490,35,10]),types.vector(["bootstrap2012/bootstrap-teachpack",22006,490,46,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22008,490,48,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22010,490,50,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22012,490,52,1]),types.vector(["bootstrap2012/bootstrap-teachpack",21994,490,34,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",21994,490,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":205,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",21995,490,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22162,494,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22162,494,9,11]),types.vector(["bootstrap2012/bootstrap-teachpack",22174,494,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22182,495,3,24]),types.vector(["bootstrap2012/bootstrap-teachpack",22207,495,28,16]),types.vector(["bootstrap2012/bootstrap-teachpack",22224,495,45,2]),types.vector(["bootstrap2012/bootstrap-teachpack",22181,495,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22181,495,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22182,495,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22208,495,29,10]),types.vector(["bootstrap2012/bootstrap-teachpack",22219,495,40,3]),types.vector(["bootstrap2012/bootstrap-teachpack",22207,495,28,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22207,495,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":225,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22208,495,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22281,498,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22281,498,9,12]),types.vector(["bootstrap2012/bootstrap-teachpack",22294,498,22,3]),types.vector(["bootstrap2012/bootstrap-teachpack",22298,498,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22307,499,3,10]),types.vector(["bootstrap2012/bootstrap-teachpack",22318,499,14,3]),types.vector(["bootstrap2012/bootstrap-teachpack",22322,499,18,27]),types.vector(["bootstrap2012/bootstrap-teachpack",22350,499,46,17]),types.vector(["bootstrap2012/bootstrap-teachpack",22306,499,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22306,499,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22307,499,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22323,499,19,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22337,499,33,4]),types.vector(["bootstrap2012/bootstrap-teachpack",22342,499,38,6]),types.vector(["bootstrap2012/bootstrap-teachpack",22322,499,18,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22322,499,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22323,499,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22351,499,47,11]),types.vector(["bootstrap2012/bootstrap-teachpack",22363,499,59,3]),types.vector(["bootstrap2012/bootstrap-teachpack",22350,499,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22350,499,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22351,499,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22464,506,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22464,506,9,15]),types.vector(["bootstrap2012/bootstrap-teachpack",22480,506,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22486,507,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22489,507,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22620,511,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22620,511,9,14]),types.vector(["bootstrap2012/bootstrap-teachpack",22635,511,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22641,512,3,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22655,512,17,19]),types.vector(["bootstrap2012/bootstrap-teachpack",22640,512,2,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22640,512,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22641,512,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22656,512,18,15]),types.vector(["bootstrap2012/bootstrap-teachpack",22672,512,34,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22655,512,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22655,512,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22656,512,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22765,518,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22765,518,9,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22779,518,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22785,519,3,4]),types.vector(["bootstrap2012/bootstrap-teachpack",22790,519,8,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22792,519,10,2]),types.vector(["bootstrap2012/bootstrap-teachpack",22795,519,13,6]),types.vector(["bootstrap2012/bootstrap-teachpack",22784,519,2,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22784,519,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22785,519,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22890,523,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",22890,523,9,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22904,523,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22910,524,3,13]),types.vector(["bootstrap2012/bootstrap-teachpack",22924,524,17,18]),types.vector(["bootstrap2012/bootstrap-teachpack",22909,524,2,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22909,524,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22910,524,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",22925,524,18,14]),types.vector(["bootstrap2012/bootstrap-teachpack",22940,524,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",22924,524,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",22924,524,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":192,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",22925,524,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23111,530,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",23111,530,9,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23122,530,20,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23133,530,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23135,530,33,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23137,530,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23152,531,3,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23163,531,14,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23174,531,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23176,531,27,7]),types.vector(["bootstrap2012/bootstrap-teachpack",23184,531,35,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23151,531,2,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23151,531,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23152,531,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23177,531,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23179,531,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23181,531,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23176,531,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23176,531,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23177,531,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23364,536,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",23364,536,9,9]),types.vector(["bootstrap2012/bootstrap-teachpack",23374,536,19,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23385,536,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23387,536,32,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23389,536,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23404,537,3,11]),types.vector(["bootstrap2012/bootstrap-teachpack",23416,537,15,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23427,537,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23429,537,28,31]),types.vector(["bootstrap2012/bootstrap-teachpack",23461,537,60,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23403,537,2,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23403,537,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23404,537,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23430,537,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23432,537,31,25]),types.vector(["bootstrap2012/bootstrap-teachpack",23458,537,57,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23429,537,28,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23429,537,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23430,537,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23433,537,32,12]),types.vector(["bootstrap2012/bootstrap-teachpack",23446,537,45,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23432,537,31,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23432,537,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23433,537,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23548,540,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",23548,540,9,2]),types.vector(["bootstrap2012/bootstrap-teachpack",23551,540,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23555,540,16,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23557,540,18,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23559,540,20,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23554,540,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23554,540,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23555,540,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23781,545,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",23781,545,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",23786,545,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23790,545,18,3]),types.vector(["bootstrap2012/bootstrap-teachpack",23794,545,22,16]),types.vector(["bootstrap2012/bootstrap-teachpack",23789,545,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23789,545,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23790,545,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23795,545,23,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23797,545,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23799,545,27,10]),types.vector(["bootstrap2012/bootstrap-teachpack",23794,545,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23794,545,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23795,545,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",23800,545,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",23802,545,30,2]),types.vector(["bootstrap2012/bootstrap-teachpack",23805,545,33,3]),types.vector(["bootstrap2012/bootstrap-teachpack",23799,545,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",23799,545,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23800,545,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",23802,545,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24033,550,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24033,550,9,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24040,550,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24044,550,20,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24048,550,24,16]),types.vector(["bootstrap2012/bootstrap-teachpack",24043,550,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24043,550,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24044,550,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24049,550,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24051,550,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24053,550,29,10]),types.vector(["bootstrap2012/bootstrap-teachpack",24048,550,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24048,550,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24049,550,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24054,550,30,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24056,550,32,2]),types.vector(["bootstrap2012/bootstrap-teachpack",24059,550,35,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24053,550,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24053,550,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24054,550,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24056,550,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24285,555,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24285,555,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24293,555,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24297,555,21,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24301,555,25,16]),types.vector(["bootstrap2012/bootstrap-teachpack",24296,555,20,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24296,555,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":165,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24297,555,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24302,555,26,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24304,555,28,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24306,555,30,10]),types.vector(["bootstrap2012/bootstrap-teachpack",24301,555,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24301,555,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24302,555,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24307,555,31,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24309,555,33,2]),types.vector(["bootstrap2012/bootstrap-teachpack",24312,555,36,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24306,555,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24306,555,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24307,555,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24309,555,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24395,559,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24395,559,9,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24400,559,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24408,560,3,8]),types.vector(["bootstrap2012/bootstrap-teachpack",24417,560,12,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24421,560,16,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24407,560,2,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24407,560,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":207,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24408,560,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24422,560,17,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24429,560,24,12]),types.vector(["bootstrap2012/bootstrap-teachpack",24421,560,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24421,560,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24422,560,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24430,560,25,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24437,560,32,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24429,560,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24429,560,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24430,560,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24552,564,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24552,564,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24560,564,17,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24562,564,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24569,565,3,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24579,566,3,29]),types.vector(["bootstrap2012/bootstrap-teachpack",24612,567,3,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24568,565,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24568,565,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24569,565,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24580,566,4,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24588,566,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24594,566,18,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24601,566,25,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24605,566,29,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24593,566,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24593,566,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":200,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24594,566,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24626,569,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24626,569,9,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24630,569,13,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24632,569,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24638,570,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24642,570,7,5]),types.vector(["bootstrap2012/bootstrap-teachpack",24648,570,13,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":202,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24642,570,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24641,570,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24652,570,17,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24660,570,25,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24662,570,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24651,570,16,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24651,570,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24652,570,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24666,570,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24670,570,35,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24674,570,39,12]),types.vector(["bootstrap2012/bootstrap-teachpack",24687,570,52,2]),types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":223,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24670,570,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24675,570,40,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24682,570,47,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24684,570,49,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24674,570,39,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24674,570,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":200,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24675,570,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24669,570,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24710,572,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24710,572,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24718,572,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24726,573,3,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24734,573,11,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24738,573,15,63]),types.vector(["bootstrap2012/bootstrap-teachpack",24725,573,2,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24725,573,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24726,573,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24739,573,16,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24749,573,26,17]),types.vector(["bootstrap2012/bootstrap-teachpack",24767,573,44,18]),types.vector(["bootstrap2012/bootstrap-teachpack",24786,573,63,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24794,573,71,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24738,573,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24738,573,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":176,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24739,573,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24750,573,27,11]),types.vector(["bootstrap2012/bootstrap-teachpack",24762,573,39,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24749,573,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24749,573,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24750,573,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24768,573,45,12]),types.vector(["bootstrap2012/bootstrap-teachpack",24781,573,58,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24767,573,44,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24767,573,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24768,573,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24814,575,9,7])}],"body":{"$":"lam","name":types.symbol("flatten"),"locs":[types.vector(["bootstrap2012/bootstrap-teachpack",24814,575,9,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24822,575,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24839,577,6,5]),types.vector(["bootstrap2012/bootstrap-teachpack",24845,577,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24839,577,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24838,577,5,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24854,578,6,6]),types.vector(["bootstrap2012/bootstrap-teachpack",24861,578,13,17]),types.vector(["bootstrap2012/bootstrap-teachpack",24892,579,13,17]),types.vector(["bootstrap2012/bootstrap-teachpack",24853,578,5,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24853,578,5,57])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24854,578,6,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24862,578,14,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24870,578,22,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24861,578,13,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24861,578,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24862,578,14,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24871,578,23,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24875,578,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24870,578,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24870,578,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":235,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24871,578,23,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24893,579,14,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24901,579,22,7]),types.vector(["bootstrap2012/bootstrap-teachpack",24892,579,13,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24892,579,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24893,579,14,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24902,579,23,3]),types.vector(["bootstrap2012/bootstrap-teachpack",24906,579,27,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24901,579,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24901,579,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":233,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24902,579,23,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24918,580,6,5]),types.vector(["bootstrap2012/bootstrap-teachpack",24924,580,12,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":195,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24918,580,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24917,580,5,9])}]}}},"then":{"$":"constant","value":types.EMPTY},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},{"$":"toplevel","depth":4,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24942,582,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24953,583,6,4]),types.vector(["bootstrap2012/bootstrap-teachpack",24958,583,11,1]),types.vector(["bootstrap2012/bootstrap-teachpack",24952,583,5,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24952,583,5,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24953,583,6,4])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135]),types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135]),types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-teachpack",24827,576,2,135])}]}}}}}}}}]}}, 'provides': ["cosine","sine","subset?","tangent","type","sq","string->image","make-game","pick","play","put-image","number->image","overlay-at","in?","boolean->image","clipart/url","color->alpha","boolean->string","*player-y*","*score*","*player-x*"]}; diff --git a/servlet-htdocs/collects/bootstrap2012/bootstrap-tilt-teachpack.js b/servlet-htdocs/collects/bootstrap2012/bootstrap-tilt-teachpack.js index f383e39..41a6241 100644 --- a/servlet-htdocs/collects/bootstrap2012/bootstrap-tilt-teachpack.js +++ b/servlet-htdocs/collects/bootstrap2012/bootstrap-tilt-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2012/bootstrap-tilt-teachpack"] = { 'name': "bootstrap2012/bootstrap-tilt-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"set!"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"update-danger*"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"onscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"update"},{"$":"global-bucket","value":"enemies"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"dangerImgs"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"projectileImg"},{"$":"global-bucket","value":"update-projectile*"},{"$":"global-bucket","value":"update-danger"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"hitables"},{"$":"global-bucket","value":"update-projectile"},{"$":"global-bucket","value":"shootables"},{"$":"global-bucket","value":"reset-chars"},{"$":"global-bucket","value":"hit-by?"},{"$":"global-bucket","value":"timer"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"projectiles"},{"$":"global-bucket","value":"dangers"},{"$":"global-bucket","value":"tap"},{"$":"global-bucket","value":"tilt"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"next-posn"},{"$":"global-bucket","value":"next-x"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"screen-point"},{"$":"global-bucket","value":"player-point"},{"$":"global-bucket","value":"py"},{"$":"global-bucket","value":"color"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"cy"},{"$":"global-bucket","value":"cx"},{"$":"global-bucket","value":"px"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world-with-shots"},{"$":"global-bucket","value":"world-with-timer"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-with-targets"},{"$":"global-bucket","value":"world-with-player"},{"$":"global-bucket","value":"world-with-score"},{"$":"global-bucket","value":"world-with-dangers"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-shots"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-dangers"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"play"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"fit-image-to"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"make-game"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"flatten"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"cull"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"boolean->image"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"add-informative-triangle"},{"$":"global-bucket","value":"animate/proc"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"TOLERANCE"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"LOSS-SCORE"},{"$":"global-bucket","value":"RESTING-TOP-DOWN-ORIENTATION"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"*player-x*"},{"$":"global-bucket","value":"*score*"},{"$":"global-bucket","value":"*target-increment*"},{"$":"global-bucket","value":"-TOLERANCE"},{"$":"global-bucket","value":"*player-y*"},{"$":"global-bucket","value":"*distance*"},{"$":"global-bucket","value":"*line-length*"},{"$":"global-bucket","value":"*distances-color*"},{"$":"global-bucket","value":"*danger-increment*"},{"$":"module-variable","sym":types.symbol("line"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("stop-when"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text/font"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("round"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("scale"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("radial-star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("ormap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tilt"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tap"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("null?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("crop"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("inexact->exact"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("apply"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",193,9,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",212,10,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",232,11,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",264,12,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",277,12,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",281,12,25,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",276,12,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",277,12,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",299,13,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",311,13,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",315,13,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",310,13,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",311,13,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",316,13,25,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",326,13,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",332,13,41,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",339,13,48,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",347,13,56,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",315,13,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",316,13,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",326,13,35,5])},{"$":"toplevel","depth":5,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",332,13,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",367,14,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",367,14,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",377,14,19,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",384,14,26,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",376,14,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",377,14,19,6])},"rands":[{"$":"constant","value":200}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",398,15,8,18])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",429,16,8,18])}],"body":{"$":"constant","value":-50}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",461,17,8,10])}],"body":{"$":"constant","value":0}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",522,20,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",531,20,17,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",535,20,21,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",530,20,16,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",531,20,17,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",547,21,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",559,21,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",563,21,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",558,21,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",559,21,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",575,22,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",587,22,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",591,22,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",586,22,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",587,22,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",626,25,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",641,25,23,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",645,25,27,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",640,25,22,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",641,25,23,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",646,25,28,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",653,25,35,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",655,25,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",671,26,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",683,26,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",687,26,24,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",682,26,19,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",683,26,20,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",688,26,25,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",695,26,32,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",698,26,35,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",701,26,38,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",704,26,41,2])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",721,27,8,17])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",740,27,27,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",744,27,31,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",739,27,26,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",740,27,27,3])},"rands":[{"$":"constant","value":""}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",796,30,8,9])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",818,31,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",830,31,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",832,31,22,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",829,31,19,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",830,31,20,1])},"rands":[{"$":"toplevel","depth":1,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",832,31,22,9])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",913,34,8,28])}],"body":{"$":"constant","value":40}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1086,38,9,12])}],"body":{"$":"lam","name":types.symbol("fit-image-to"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1086,38,9,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1099,38,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1101,38,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1103,38,26,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1131,40,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1133,40,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1156,40,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1131,40,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1134,40,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1146,40,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1133,40,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1134,40,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1157,40,34,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1159,40,36,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1167,40,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1156,40,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1157,40,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1160,40,37,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1162,40,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1164,40,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1159,40,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1160,40,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1168,40,45,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1181,40,58,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1167,40,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1168,40,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1201,41,8,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1207,41,14,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1236,41,43,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1200,41,7,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1201,41,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1208,41,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1210,41,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1212,41,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1207,41,14,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1208,41,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1213,41,20,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1225,41,32,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1212,41,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1213,41,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1255,42,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1257,42,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1280,42,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1255,42,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1258,42,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1270,42,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1257,42,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1258,42,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1281,42,34,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1283,42,36,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1291,42,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1280,42,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1281,42,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1284,42,37,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1286,42,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1288,42,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1283,42,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1284,42,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1292,42,45,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1305,42,58,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1291,42,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1292,42,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1326,43,8,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1332,43,14,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1388,44,14,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1325,43,7,143])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1326,43,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1333,43,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1335,43,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1337,43,19,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1332,43,14,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1333,43,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1338,43,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1340,43,22,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1348,43,30,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1337,43,19,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1338,43,20,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1341,43,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1343,43,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1345,43,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1340,43,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1341,43,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1349,43,31,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1362,43,44,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1348,43,30,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1349,43,31,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1389,44,15,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1394,44,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1396,44,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1398,44,24,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1434,44,60,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1458,44,84,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1388,44,14,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1389,44,15,4])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1399,44,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1401,44,27,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1409,44,35,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1398,44,24,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1399,44,25,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1402,44,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1404,44,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1406,44,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1401,44,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1402,44,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1410,44,36,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1423,44,49,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1409,44,35,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1410,44,36,12])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1435,44,61,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1448,44,74,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1434,44,60,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1435,44,61,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1478,45,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1480,45,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1503,45,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1478,45,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1481,45,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1493,45,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1480,45,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1481,45,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1504,45,34,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1506,45,36,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1514,45,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1503,45,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1504,45,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1507,45,37,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1509,45,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1511,45,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1506,45,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1507,45,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1515,45,45,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1528,45,58,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1514,45,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1515,45,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1548,46,8,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1554,46,14,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1597,47,14,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1547,46,7,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1548,46,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1555,46,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1557,46,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1559,46,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1554,46,14,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1555,46,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1560,46,20,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1572,46,32,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1559,46,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1560,46,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1598,47,15,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1603,47,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1605,47,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1607,47,24,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1630,47,47,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1665,47,82,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1597,47,14,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1598,47,15,4])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1608,47,25,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1620,47,37,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1607,47,24,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1608,47,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1631,47,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1633,47,50,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1641,47,58,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1630,47,47,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1631,47,48,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1634,47,51,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1636,47,53,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1638,47,55,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1633,47,50,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1634,47,51,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1642,47,59,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1654,47,71,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1641,47,58,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1642,47,59,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1793,52,9,4])}],"body":{"$":"lam","name":types.symbol("cull"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1793,52,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1798,52,14,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1809,53,3,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1816,53,10,126]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1943,54,70,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1808,53,2,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1809,53,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1817,53,11,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1825,53,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1834,53,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1836,53,30,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1848,53,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1834,53,28,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1837,53,31,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1845,53,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1836,53,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1837,53,31,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1852,53,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1854,53,48,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1866,53,60,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1852,53,46,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1855,53,49,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1863,53,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1854,53,48,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1855,53,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1866,53,60,5])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1901,54,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1903,54,30,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1915,54,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1901,54,28,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1904,54,31,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1912,54,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1903,54,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1904,54,31,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1919,54,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1921,54,48,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1933,54,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1919,54,46,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1922,54,49,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1930,54,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1921,54,48,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1922,54,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1933,54,60,6])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2095,61,15,5])},{"$":"toplevel","depth":0,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":203,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2235,65,15,5])},{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":203,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":8},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("dangers")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("shots")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":7},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2334,68,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2343,68,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2351,68,25,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2358,68,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2342,68,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2343,68,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2351,68,25,6])},{"$":"toplevel","depth":2,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2358,68,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2379,69,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2388,69,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2396,69,25,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2403,69,32,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2387,69,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2388,69,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2396,69,25,6])},{"$":"toplevel","depth":2,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2403,69,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2471,72,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2471,72,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2483,72,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2490,72,28,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2500,72,38,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2514,72,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2489,72,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2490,72,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2501,72,39,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2508,72,46,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2500,72,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2501,72,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2515,72,53,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2517,72,55,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2524,72,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2514,72,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2515,72,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2517,72,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2525,72,63,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2527,72,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2524,72,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2525,72,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2528,72,66,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2535,72,73,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2527,72,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2528,72,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2576,75,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-dangers"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2576,75,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2595,75,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2597,75,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2601,75,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2612,75,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2630,75,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2646,75,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2664,75,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2681,75,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2694,75,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2710,75,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2726,75,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2600,75,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2601,75,34,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2631,75,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2643,75,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2630,75,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2631,75,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2647,75,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2661,75,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2646,75,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2647,75,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2665,75,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2678,75,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2664,75,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2665,75,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2682,75,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2691,75,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2681,75,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2682,75,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2695,75,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2707,75,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2694,75,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2695,75,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2711,75,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2723,75,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2710,75,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2711,75,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2727,75,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2739,75,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2726,75,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2727,75,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2753,76,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-shots"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2753,76,9,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2772,76,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2774,76,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2778,76,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2789,76,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2807,76,63,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2823,76,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2841,76,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2858,76,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2871,76,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2887,76,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2903,76,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2777,76,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2778,76,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2790,76,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2804,76,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2789,76,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2790,76,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2824,76,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2838,76,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2823,76,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2824,76,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2842,76,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2855,76,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2841,76,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2842,76,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2859,76,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2868,76,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2858,76,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2859,76,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2872,76,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2884,76,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2871,76,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2872,76,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2888,76,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2900,76,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2887,76,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2888,76,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2904,76,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2916,76,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2903,76,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2904,76,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2930,77,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-targets"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2930,77,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2949,77,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2951,77,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2955,77,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2966,77,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2984,77,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3000,77,79,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3018,77,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3035,77,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3048,77,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3064,77,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3080,77,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2954,77,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2955,77,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2967,77,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2981,77,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2966,77,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2967,77,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2985,77,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2997,77,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2984,77,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2985,77,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3019,77,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3032,77,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3018,77,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3019,77,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3036,77,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3045,77,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3035,77,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3036,77,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3049,77,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3061,77,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3048,77,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3049,77,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3065,77,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3077,77,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3064,77,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3065,77,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3081,77,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3093,77,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3080,77,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3081,77,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3107,78,9,17])}],"body":{"$":"lam","name":types.symbol("world-with-player"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3107,78,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3126,78,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3128,78,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3132,78,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3143,78,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3161,78,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3177,78,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3195,78,97,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3212,78,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3225,78,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3241,78,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3257,78,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3131,78,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3132,78,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3144,78,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3158,78,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3143,78,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3144,78,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3162,78,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3174,78,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3161,78,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3162,78,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3178,78,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3192,78,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3177,78,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3178,78,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3213,78,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3222,78,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3212,78,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3213,78,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3226,78,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3238,78,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3225,78,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3226,78,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3242,78,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3254,78,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3241,78,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3242,78,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3258,78,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3270,78,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3257,78,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3258,78,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3284,79,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-score"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3284,79,9,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3303,79,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3305,79,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3309,79,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3320,79,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3338,79,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3354,79,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3372,79,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3389,79,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3402,79,127,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3418,79,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3434,79,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3308,79,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3309,79,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3321,79,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3335,79,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3320,79,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3321,79,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3339,79,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3351,79,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3338,79,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3339,79,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3355,79,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3369,79,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3354,79,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3355,79,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3373,79,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3386,79,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3372,79,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3373,79,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3390,79,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3399,79,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3389,79,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3390,79,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3419,79,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3431,79,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3418,79,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3419,79,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3435,79,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3447,79,172,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3434,79,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3435,79,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3461,80,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-timer"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3461,80,9,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3480,80,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3482,80,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3486,80,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3497,80,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3515,80,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3531,80,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3549,80,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3566,80,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3579,80,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3595,80,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3611,80,159,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3485,80,33,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3486,80,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3498,80,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3512,80,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3497,80,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3498,80,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3516,80,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3528,80,76,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3515,80,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3516,80,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3532,80,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3546,80,94,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3531,80,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3532,80,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3550,80,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3563,80,111,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3549,80,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3550,80,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3567,80,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3576,80,124,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3566,80,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3567,80,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3580,80,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3592,80,140,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3579,80,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3580,80,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3596,80,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3608,80,156,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3595,80,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3596,80,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3690,83,9,24])}],"body":{"$":"lam","name":types.symbol("add-informative-triangle"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3690,83,9,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3715,83,34,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3718,83,37,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3721,83,40,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3727,83,46,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3748,84,9,78]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3762,84,23,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3748,84,9,78])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3748,84,9,78]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3749,84,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3836,85,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3840,85,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3836,85,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3836,85,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3837,85,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3872,86,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3876,86,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3872,86,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3872,86,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3873,86,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3905,87,5,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3909,87,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3914,87,14,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3916,87,16,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3919,87,19,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3914,87,14,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3909,87,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3924,87,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3926,87,26,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3929,87,29,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3924,87,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4001,89,8,839]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4011,89,18,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4040,90,18,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4071,91,20,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4001,89,8,839])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4001,89,8,839]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4008,89,15,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4037,90,15,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4066,91,15,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4145,92,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4169,93,11,52]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4233,94,11,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4249,94,27,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4263,95,11,575])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4144,92,10,695])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4145,92,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4170,93,12,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4175,93,17,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4212,93,54,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4215,93,57,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4169,93,11,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4170,93,12,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4176,93,18,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4181,93,23,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4175,93,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4182,93,24,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4204,93,46,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4207,93,49,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4181,93,23,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4183,93,25,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4189,93,31,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4182,93,24,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4183,93,25,5])},"rands":[{"$":"toplevel","depth":11,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4189,93,31,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4234,94,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4236,94,14,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4239,94,17,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4233,94,11,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4234,94,12,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4240,94,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4242,94,20,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4245,94,23,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4239,94,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4240,94,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4264,95,12,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4288,96,12,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4318,97,12,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4334,97,28,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4349,98,12,488])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4263,95,11,575])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4264,95,12,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4289,96,13,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4294,96,18,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4297,96,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4299,96,23,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4288,96,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4289,96,13,4])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4319,97,13,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4321,97,15,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4324,97,18,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4318,97,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4319,97,13,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4325,97,19,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4327,97,21,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4330,97,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4324,97,18,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4325,97,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4350,98,13,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4375,99,13,52]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4441,100,13,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4444,100,16,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4473,101,13,363])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4349,98,12,488])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4350,98,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4376,99,14,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4381,99,19,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4418,99,56,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4421,99,59,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4375,99,13,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4376,99,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4382,99,20,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4387,99,25,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4381,99,19,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4388,99,26,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4410,99,48,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4413,99,51,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4387,99,25,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4389,99,27,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4395,99,33,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4388,99,26,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4389,99,27,5])},"rands":[{"$":"toplevel","depth":19,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4395,99,33,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4445,100,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4447,100,19,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4450,100,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4444,100,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4445,100,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4451,100,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4453,100,25,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4456,100,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4450,100,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4451,100,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4474,101,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4500,102,14,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4532,103,14,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4535,103,17,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4565,104,14,270])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4473,101,13,363])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4474,101,14,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4501,102,15,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4506,102,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4508,102,22,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4511,102,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4500,102,14,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4501,102,15,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4536,103,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4538,103,20,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4541,103,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4535,103,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":18,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4536,103,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4542,103,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4544,103,26,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4547,103,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4541,103,23,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4542,103,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4566,104,15,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4593,105,15,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4664,106,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4680,106,31,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4711,107,15,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4565,104,14,270])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4566,104,15,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4594,105,16,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4599,105,21,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4639,105,61,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4642,105,64,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4593,105,15,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":23,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4594,105,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4600,105,22,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4605,105,27,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4599,105,21,39])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4606,105,28,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4625,105,47,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4628,105,50,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4631,105,53,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4634,105,56,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4605,105,27,32])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4607,105,29,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4613,105,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4606,105,28,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":29,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4607,105,29,5])},"rands":[{"$":"toplevel","depth":29,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4613,105,35,10])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4665,106,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4667,106,18,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4670,106,21,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4664,106,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4665,106,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4671,106,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4673,106,24,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4676,106,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4670,106,21,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4671,106,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4681,106,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4683,106,34,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4686,106,37,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4680,106,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4681,106,32,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4687,106,38,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4689,106,40,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4692,106,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4686,106,37,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4687,106,38,1])},"rands":[{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4712,107,16,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4740,108,16,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4775,109,16,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4791,109,32,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4823,110,16,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4711,107,15,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4712,107,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4741,108,17,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4746,108,22,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4749,108,25,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4752,108,28,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4740,108,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":27,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4741,108,17,4])},"rands":[{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4776,109,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4778,109,19,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4781,109,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4775,109,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4776,109,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4782,109,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4784,109,25,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4787,109,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4781,109,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4782,109,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4792,109,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4794,109,35,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4797,109,38,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4791,109,32,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4792,109,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4798,109,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4800,109,41,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4803,109,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4797,109,38,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4798,109,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":36,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4012,89,19,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4014,89,21,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4017,89,24,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4011,89,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4012,89,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4041,90,19,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4043,90,21,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4046,90,24,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4040,90,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4041,90,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4072,91,21,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4080,91,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4086,91,35,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4101,91,50,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4085,91,34,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":194,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4086,91,35,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4102,91,51,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4117,91,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4101,91,50,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":214,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4102,91,51,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4118,91,67,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4124,91,73,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4117,91,66,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4118,91,67,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3877,86,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3884,86,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3876,86,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3877,86,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3841,85,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3848,85,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3840,85,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3841,85,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3763,84,24,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3775,84,36,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3762,84,23,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3763,84,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3776,84,37,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3786,84,47,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3805,84,66,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3775,84,36,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3776,84,37,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3787,84,48,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3793,84,54,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3786,84,47,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3787,84,48,5])},"rands":[{"$":"toplevel","depth":5,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3793,84,54,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3806,84,67,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3812,84,73,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3805,84,66,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3806,84,67,5])},"rands":[{"$":"toplevel","depth":5,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3812,84,73,10])}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4962,114,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4962,114,9,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4973,114,20,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4979,114,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5000,115,9,47]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5014,115,23,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5000,115,9,47])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5000,115,9,47]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5001,115,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5057,116,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5061,116,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5057,116,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5057,116,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5058,116,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5093,117,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5097,117,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5093,117,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5093,117,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5094,117,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5129,118,9,235]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5140,118,20,223])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5129,118,9,235])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5129,118,9,235]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5130,118,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5371,122,5,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5383,122,17,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5405,122,39,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5408,122,42,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5411,122,45,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5370,122,4,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5371,122,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5384,122,18,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5398,122,32,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5383,122,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5384,122,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5141,118,21,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5145,118,25,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5154,118,34,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5180,118,60,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5145,118,25,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5155,118,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5161,118,41,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5154,118,34,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5155,118,35,5])},"rands":[{"$":"toplevel","depth":8,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5161,118,41,17])}]}}},{"$":"constant","value":""}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5244,120,25,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5269,120,50,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5272,120,53,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5275,120,56,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5351,121,50,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5243,120,24,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5244,120,25,24])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5276,120,57,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5282,120,63,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5275,120,56,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5276,120,57,5])},"rands":[{"$":"toplevel","depth":6,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5282,120,63,17])}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5098,117,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5105,117,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5097,117,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5098,117,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5062,116,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5069,116,21,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5061,116,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5062,116,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5015,115,24,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5027,115,36,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5014,115,23,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5015,115,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5028,115,37,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5039,115,48,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5027,115,36,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5028,115,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5548,127,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5548,127,9,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5559,127,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5571,128,9,118]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5585,128,23,103])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5571,128,9,118])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5571,128,9,118]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5572,128,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5699,130,9,305]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5707,130,17,296])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5699,130,9,305])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5699,130,9,305]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5700,130,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6014,135,9,90]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6029,136,10,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6014,135,9,90])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6014,135,9,90]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6015,135,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6124,138,7,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6133,138,16,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6144,138,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6123,138,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6124,138,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6133,138,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6145,138,28,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6152,138,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6144,138,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6145,138,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6153,138,36,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6164,138,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6152,138,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6153,138,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6165,138,48,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6178,138,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6164,138,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6165,138,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6191,139,7,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6200,139,16,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6211,139,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6190,139,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6191,139,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6200,139,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6212,139,28,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6219,139,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6211,139,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6212,139,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6220,139,36,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6231,139,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6219,139,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6220,139,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6232,139,48,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6245,139,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6231,139,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6232,139,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6259,141,7,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6268,141,16,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6276,141,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6258,141,6,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6259,141,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6268,141,16,7])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6277,141,25,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6289,141,37,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6276,141,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6277,141,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6300,142,7,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6304,142,11,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6307,142,14,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6323,142,30,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6304,142,11,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6308,142,15,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6320,142,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6307,142,14,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6308,142,15,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6337,143,11,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6348,143,22,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6336,143,10,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6337,143,11,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2012/gameover.png"}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6421,144,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6433,144,23,77]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6534,145,23,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6580,145,69,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6607,146,23,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6420,144,10,236])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6421,144,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6434,144,24,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6444,144,34,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6457,144,47,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6460,144,50,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6480,144,70,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6483,144,73,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6492,144,82,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6500,144,90,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6506,144,96,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6433,144,23,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":164,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6434,144,24,9])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":18},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6461,144,51,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6467,144,57,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6460,144,50,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6461,144,51,5])},"rands":[{"$":"toplevel","depth":13,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6467,144,57,11])}]}}},{"$":"constant","value":false},{"$":"constant","value":types.symbol("default")},{"$":"constant","value":types.symbol("italic")},{"$":"constant","value":types.symbol("bold")},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6535,145,24,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6544,145,33,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6577,145,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6534,145,23,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6535,145,24,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6545,145,34,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6557,145,46,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6544,145,33,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6545,145,34,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6558,145,47,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6564,145,53,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6557,145,46,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6558,145,47,5])},"rands":[{"$":"toplevel","depth":8,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6564,145,53,10])}]}}}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6608,146,24,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6614,146,30,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6625,146,41,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6644,146,60,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6607,146,23,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":212,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6608,146,24,5])},"rands":[{"$":"toplevel","depth":7,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6614,146,30,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6626,146,42,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6632,146,48,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6625,146,41,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6626,146,42,5])},"rands":[{"$":"toplevel","depth":8,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6632,146,48,10])}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6030,136,11,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6037,136,18,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6055,136,36,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6073,136,54,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6089,136,70,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6029,136,10,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6030,136,11,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6038,136,19,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6052,136,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6037,136,18,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6038,136,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6056,136,37,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6070,136,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6055,136,36,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6056,136,37,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6074,136,55,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6086,136,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6073,136,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6074,136,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6090,136,71,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6095,136,76,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6089,136,70,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6090,136,71,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5708,130,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5712,130,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5714,130,24,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5730,130,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5712,130,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5715,130,25,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5727,130,37,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5714,130,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5715,130,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5755,131,22,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5766,131,33,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5829,132,33,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5754,131,21,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5755,131,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5767,131,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5778,131,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5766,131,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5767,131,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5779,131,46,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5792,131,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5778,131,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5779,131,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5830,132,34,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5842,132,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5844,132,48,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5868,132,72,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5939,133,47,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5947,133,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5829,132,33,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":180,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5830,132,34,11])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5845,132,49,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5847,132,51,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5851,132,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5844,132,48,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5845,132,49,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5852,132,56,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5864,132,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5851,132,55,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5852,132,56,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5869,132,73,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5871,132,75,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5875,132,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5868,132,72,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5869,132,73,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5876,132,80,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5888,132,92,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5875,132,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5876,132,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":8,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5947,133,55,15])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5987,134,22,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6000,134,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5986,134,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5987,134,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5586,128,24,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5600,128,38,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5616,128,54,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5655,129,38,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5585,128,23,103])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":170,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5586,128,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5601,128,39,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5613,128,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5600,128,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5601,128,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5656,129,39,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5671,129,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5655,129,38,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":194,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5656,129,39,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5672,129,55,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5684,129,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5671,129,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5672,129,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6835,151,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6835,151,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6847,151,21,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6864,153,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6866,153,8,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6886,153,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6864,153,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6867,153,9,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6883,153,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6866,153,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6867,153,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6895,154,6,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6903,154,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6907,154,18,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6918,154,29,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6958,154,69,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6906,154,17,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6907,154,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6919,154,30,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6929,154,40,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6945,154,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6918,154,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6919,154,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6930,154,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6932,154,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6929,154,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6933,154,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6941,154,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6932,154,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6933,154,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6946,154,57,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6954,154,65,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6945,154,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6946,154,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6959,154,70,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6973,154,84,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6958,154,69,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6959,154,70,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6985,155,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6987,155,8,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7007,155,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6985,155,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6988,155,9,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7004,155,25,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6987,155,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6988,155,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7016,156,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7019,156,9,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7023,156,13,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7034,156,24,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7062,156,52,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7022,156,12,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7023,156,13,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7035,156,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7037,156,27,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7049,156,39,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7034,156,24,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7038,156,28,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7046,156,36,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7037,156,27,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7038,156,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7050,156,40,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7058,156,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7049,156,39,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7050,156,40,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7063,156,53,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7077,156,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7062,156,52,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7063,156,53,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7217,161,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7217,161,9,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7223,161,15,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7229,161,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7241,162,9,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7252,162,20,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7241,162,9,60])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7241,162,9,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7242,162,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7311,163,9,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7319,163,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7311,163,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7311,163,9,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7312,163,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7354,164,9,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7362,164,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7354,164,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7354,164,9,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7355,164,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7397,165,9,443]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7410,165,22,429])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7397,165,9,443])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7397,165,9,443]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7398,165,10,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7847,172,5,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7858,172,16,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7870,172,28,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7846,172,4,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7847,172,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7871,172,29,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7885,172,43,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7870,172,28,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7871,172,29,13])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7411,165,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7415,165,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7417,165,29,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7430,165,42,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7415,165,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7418,165,30,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7422,165,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7417,165,29,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7418,165,30,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7431,165,43,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7435,165,47,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7430,165,42,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7431,165,43,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7471,166,27,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7475,166,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7477,166,33,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7484,166,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7475,166,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7518,167,31,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7528,167,41,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7543,167,56,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7517,167,30,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7518,167,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7529,167,42,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7536,167,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7528,167,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7529,167,42,6])},"rands":[{"$":"toplevel","depth":4,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7536,167,49,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7544,167,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7546,167,59,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7556,167,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7543,167,56,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7544,167,57,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7547,167,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7546,167,59,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7547,167,60,7])},"rands":[]}}},{"$":"toplevel","depth":5,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7556,167,69,6])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7596,168,31,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7606,168,41,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7621,168,56,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7595,168,30,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7596,168,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7607,168,42,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7614,168,49,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7606,168,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7607,168,42,6])},"rands":[{"$":"toplevel","depth":4,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7614,168,49,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7622,168,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7624,168,59,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7634,168,69,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7621,168,56,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7622,168,57,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7625,168,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7624,168,59,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7625,168,60,7])},"rands":[]}}},{"$":"constant","value":-1}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7667,169,27,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7671,169,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7673,169,33,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7680,169,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7671,169,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7715,170,31,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7725,170,41,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7745,170,61,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7714,170,30,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7715,170,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7726,170,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7728,170,44,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7738,170,54,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7725,170,41,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7726,170,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7729,170,45,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7728,170,44,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7729,170,45,7])},"rands":[]}}},{"$":"toplevel","depth":5,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7738,170,54,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7746,170,62,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7753,170,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7745,170,61,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7746,170,62,6])},"rands":[{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7753,170,69,6])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7794,171,31,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7804,171,41,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7821,171,58,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7793,171,30,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7794,171,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7805,171,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7807,171,44,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7817,171,54,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7804,171,41,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7805,171,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7808,171,45,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7807,171,44,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7808,171,45,7])},"rands":[]}}},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7822,171,59,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7829,171,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7821,171,58,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7822,171,59,6])},"rands":[{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7829,171,66,6])}]}}}]}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7363,164,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7365,164,20,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7384,164,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7362,164,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7363,164,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7366,164,21,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7373,164,28,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7365,164,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7366,164,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7320,163,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7322,163,20,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7341,163,39,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7319,163,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7320,163,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7323,163,21,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7330,163,28,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7322,163,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7323,163,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7253,162,21,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7264,162,32,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7252,162,20,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7253,162,21,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7265,162,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7267,162,35,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7264,162,32,35])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7268,162,36,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7279,162,47,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7295,162,63,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7267,162,35,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7268,162,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7280,162,48,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7290,162,58,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7292,162,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7279,162,47,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7280,162,48,9])},"rands":[{"$":"constant","value":1},{"$":"constant","value":1}]}}},{"$":"constant","value":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7906,175,9,9])}],"body":{"$":"lam","name":types.symbol("make-game"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7906,175,9,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7916,175,19,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7922,175,25,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7934,175,37,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7965,176,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7976,176,30,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8010,177,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8021,177,30,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8055,178,19,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8065,178,29,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8099,179,19,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8114,179,34,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8152,180,19,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8168,180,35,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8180,180,47,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8209,181,19,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8217,181,27,8])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8230,182,3,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8235,182,8,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8241,182,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8253,182,26,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8273,183,8,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8284,183,19,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8307,184,8,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8318,184,19,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8341,185,8,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8351,185,18,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8373,186,8,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8388,186,23,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8415,187,8,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8431,187,24,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8443,187,36,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8461,188,8,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8469,188,16,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8229,182,2,249])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8230,182,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8492,192,9,4])}],"body":{"$":"lam","name":types.symbol("play"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8492,192,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8497,192,14,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8504,192,21,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8510,192,27,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8523,192,40,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8503,192,20,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8504,192,21,5])},"rands":[{"$":"toplevel","depth":2,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8510,192,27,12])},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8842,199,9,12])}],"body":{"$":"lam","name":types.symbol("animate/proc"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8842,199,9,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8855,199,22,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8861,199,28,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8895,200,22,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8915,201,22,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8929,201,36,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8952,202,22,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8966,202,36,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8989,203,22,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9003,203,36,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9040,204,22,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9054,204,36,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9095,205,22,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9111,205,38,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9123,205,50,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9154,206,22,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9164,206,32,10])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9190,208,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9199,208,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9211,208,26,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9189,208,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9190,208,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9199,208,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9229,209,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9238,209,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9249,209,25,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9228,209,4,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9229,209,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9238,209,14,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9250,209,26,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9263,209,39,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9269,209,45,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9276,209,52,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9249,209,25,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9250,209,26,12])},"rands":[{"$":"toplevel","depth":5,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9263,209,39,5])},{"$":"toplevel","depth":5,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9269,209,45,6])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9294,210,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9303,210,14,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9317,210,28,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9293,210,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9294,210,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9303,210,14,13])},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9335,211,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9344,211,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9355,211,25,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9334,211,4,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9335,211,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9344,211,14,10])},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9370,212,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9379,212,14,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9397,212,32,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9369,212,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9370,212,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9379,212,14,17])},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9425,213,11,68]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9433,213,19,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9425,213,11,68])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9425,213,11,68]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9426,213,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,10,11,12,16,17],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9589,216,11,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9604,216,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9589,216,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9589,216,11,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9590,216,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9645,217,11,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9660,217,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9645,217,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9645,217,11,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9646,217,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9701,218,11,52]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9720,218,30,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9701,218,11,52])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9701,218,11,52]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9702,218,12,17])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9765,219,11,348]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9793,220,12,319])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9765,219,11,348])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9765,219,11,348]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9766,219,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10125,225,11,182]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10136,225,22,170])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10125,225,11,182])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10125,225,11,182]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10126,225,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10319,228,11,130]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10329,228,21,119])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10319,228,11,130])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10319,228,11,130]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10320,228,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10532,232,11,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10541,232,20,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10532,232,11,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10532,232,11,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10533,232,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10703,235,11,232]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10716,235,24,218])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10703,235,11,232])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10703,235,11,232]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10704,235,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11034,241,11,133]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11043,241,20,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11034,241,11,133])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11034,241,11,133]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11035,241,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11179,243,11,133]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11188,243,20,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11179,243,11,133])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11179,243,11,133]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11180,243,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11324,245,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11331,245,18,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11324,245,11,11])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11324,245,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11325,245,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11451,248,11,72]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11458,248,18,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11451,248,11,72])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11451,248,11,72]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11452,248,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11593,251,11,826]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11603,251,21,815])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11593,251,11,826])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11593,251,11,826]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11594,251,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12432,264,11,377]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12438,264,17,370])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12432,264,11,377])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12432,264,11,377]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12433,264,12,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12821,271,11,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12826,271,16,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12821,271,11,39])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12821,271,11,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12822,271,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12928,274,11,2513]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12942,274,25,2498])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12928,274,11,2513])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12928,274,11,2513]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12929,274,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15451,310,7,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15460,310,16,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15482,311,16,47]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15546,312,16,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15588,313,16,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15627,314,16,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15661,315,16,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15692,316,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15450,310,6,255])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":240,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15451,310,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15483,311,17,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15493,311,27,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15482,311,16,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15483,311,17,9])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15494,311,28,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15502,311,36,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[8],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15506,311,40,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15508,311,42,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15524,311,58,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15505,311,39,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15506,311,40,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15509,311,43,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15521,311,55,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15508,311,42,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15509,311,43,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":-1}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15547,312,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15555,312,25,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15568,312,38,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15546,312,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":191,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15547,312,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15589,313,17,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15599,313,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15588,313,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15589,313,17,9])},"rands":[{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15599,313,27,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15628,314,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15635,314,24,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15627,314,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":195,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15628,314,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15662,315,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15670,315,25,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15661,315,16,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":192,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15662,315,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15693,316,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15700,316,24,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15692,316,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":193,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15693,316,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12943,274,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12946,274,29,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12984,275,34,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12992,275,42,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12984,275,34,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12984,275,34,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12985,275,35,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13044,276,34,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13048,276,38,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13044,276,34,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13044,276,34,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13045,276,35,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13096,277,34,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13103,277,41,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13096,277,34,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13096,277,34,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13097,277,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13154,278,34,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13161,278,41,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13154,278,34,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13154,278,34,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13155,278,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13313,280,34,57]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13325,280,46,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13313,280,34,57])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13313,280,34,57]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13314,280,35,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13405,281,34,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13415,281,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13405,281,34,40])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13405,281,34,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13406,281,35,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13703,285,34,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13712,285,43,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13703,285,34,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13703,285,34,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13704,285,35,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13802,286,34,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13811,286,43,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13802,286,34,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13802,286,34,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13803,286,35,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13901,287,34,79]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13914,287,47,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13901,287,34,79])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13901,287,34,79]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13902,287,35,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,5,6,7,8,9,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14123,290,34,206]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14130,290,41,198])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14123,290,34,206])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14123,290,34,206]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14124,290,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14529,296,33,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14532,296,36,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14548,296,52,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14529,296,33,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14533,296,37,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14545,296,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14532,296,36,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14533,296,37,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14548,296,52,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14596,297,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14598,297,35,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14614,297,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14596,297,33,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14599,297,36,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14611,297,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14598,297,35,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14599,297,36,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14650,298,33,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14661,298,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14669,298,52,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14681,298,64,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14689,298,72,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14696,298,79,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14744,299,44,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14750,299,50,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14756,299,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14649,298,32,120])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14650,298,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14757,299,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14759,299,59,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14765,299,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14756,299,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14757,299,57,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14804,300,33,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14812,300,41,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14819,300,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14820,300,49,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14834,300,63,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14819,300,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14820,300,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14871,301,33,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14882,301,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14890,301,52,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14902,301,64,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14910,301,72,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14917,301,79,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14965,302,44,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14994,302,73,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15000,302,79,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14870,301,32,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14871,301,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14966,302,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14968,302,47,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14974,302,53,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14965,302,44,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14966,302,45,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14974,302,53,18])}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15039,303,33,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15047,303,41,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15054,303,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15055,303,49,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15069,303,63,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15054,303,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15055,303,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15106,304,33,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15117,304,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15125,304,52,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15137,304,64,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15145,304,72,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15152,304,79,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15200,305,44,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15229,305,73,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15235,305,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15105,304,32,146])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15106,304,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15201,305,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15203,305,47,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15209,305,53,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15200,305,44,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15201,305,45,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15209,305,53,18])}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15236,305,80,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15248,305,92,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15235,305,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15236,305,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15291,306,38,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15302,306,49,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15310,306,57,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15322,306,69,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15330,306,77,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15337,306,84,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15390,307,49,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15396,307,55,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15402,307,61,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15290,306,37,118])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15291,306,38,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])}]}}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14131,290,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14133,290,44,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14193,291,44,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14130,290,41,198])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14131,290,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14134,290,45,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14146,290,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14133,290,44,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14134,290,45,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14194,291,45,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14198,291,49,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14204,291,55,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14241,291,92,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14198,291,49,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14205,291,56,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14207,291,58,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14211,291,62,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14219,291,70,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14221,291,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14210,291,61,29])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14222,291,73,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14236,291,87,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14221,291,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14222,291,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14242,291,93,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14254,291,105,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14241,291,92,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14242,291,93,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])}]}}},"then":{"$":"toplevel","depth":3,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14306,292,48,18])},"else":{"$":"constant","value":0}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13915,287,48,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13927,287,60,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13950,287,83,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13961,287,94,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13914,287,47,65])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13928,287,61,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13933,287,66,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13927,287,60,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13928,287,61,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13934,287,67,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13946,287,79,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13933,287,66,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13934,287,67,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13812,286,44,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13824,286,56,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13842,286,74,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13851,286,83,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13811,286,43,54])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13825,286,57,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13839,286,71,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13824,286,56,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13825,286,57,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13713,285,44,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13725,285,56,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13743,285,74,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13752,285,83,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13712,285,43,54])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13726,285,57,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13740,285,71,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13725,285,56,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13726,285,57,13])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13416,281,45,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13421,281,50,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13428,281,57,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13415,281,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13416,281,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13429,281,58,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13441,281,70,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13428,281,57,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13429,281,58,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13326,280,47,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13333,280,54,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13351,280,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13325,280,46,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13326,280,47,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13334,280,55,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13348,280,69,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13333,280,54,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13334,280,55,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13352,280,73,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13366,280,87,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13351,280,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13352,280,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13162,278,42,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13174,278,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13161,278,41,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13162,278,42,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13104,277,42,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13116,277,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13103,277,41,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13104,277,42,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13049,276,39,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13058,276,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13048,276,38,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13049,276,39,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12993,275,43,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13006,275,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12992,275,42,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12993,275,43,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12827,271,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12835,271,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12837,271,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12839,271,29,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[8],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12843,271,33,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12852,271,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12854,271,44,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12842,271,32,16])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12439,264,18,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12447,264,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12449,264,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12451,264,30,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12501,266,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12503,266,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12505,266,26,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12501,266,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":6,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12505,266,26,9])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12517,266,38,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12526,266,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12528,266,49,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12516,266,37,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12560,267,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12562,267,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12564,267,26,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12560,267,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":6,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12564,267,26,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12577,267,39,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12586,267,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12588,267,50,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12576,267,38,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12619,268,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12621,268,24,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12656,268,59,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12619,268,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12622,268,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12624,268,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12626,268,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12621,268,24,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12622,268,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":8,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12626,268,29,28])}]}}},{"$":"toplevel","depth":6,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12656,268,59,9])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12668,268,71,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12677,268,80,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12679,268,82,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12667,268,70,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12710,269,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12712,269,24,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12747,269,59,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12710,269,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12713,269,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12715,269,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12717,269,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12712,269,24,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12713,269,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":8,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12717,269,29,28])}]}}},{"$":"toplevel","depth":6,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12747,269,59,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12760,269,72,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12769,269,81,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12771,269,83,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12759,269,71,17])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])}]}}}}}}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11604,251,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11606,251,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11608,251,26,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2,3,7,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11669,253,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11674,253,32,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11683,253,41,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11687,253,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11674,253,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11669,253,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11693,253,51,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11696,253,54,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11712,253,70,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11693,253,51,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11697,253,55,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11709,253,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11696,253,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11697,253,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":10,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11712,253,70,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11759,254,27,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11762,254,30,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11778,254,46,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11759,254,27,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11763,254,31,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11775,254,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11762,254,30,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11763,254,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11778,254,46,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11820,255,27,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11829,255,36,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11833,255,40,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11820,255,27,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"release"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11874,256,27,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11883,256,36,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11887,256,40,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11874,256,27,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"escape"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11898,256,51,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11915,256,68,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11917,256,70,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11897,256,50,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11898,256,51,16])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11949,257,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11954,257,32,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11963,257,41,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11967,257,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11954,257,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11949,257,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12004,258,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12086,259,36,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12090,259,40,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12086,259,36,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12091,259,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12093,259,43,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12118,259,68,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12090,259,40,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12091,259,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12094,259,44,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12113,259,63,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12093,259,43,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}},{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12004,258,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12008,258,36,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12010,258,38,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12047,258,75,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12008,258,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12011,258,39,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12027,258,55,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12010,258,38,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12011,258,39,15])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12153,260,27,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12170,260,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12172,260,46,151])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12152,260,26,172])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12153,260,27,16])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12173,260,47,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12178,260,52,76]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12307,261,52,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12172,260,46,151])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12173,260,47,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12179,260,53,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12190,260,64,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12240,260,114,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12178,260,52,76])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12179,260,53,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12191,260,65,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12201,260,75,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12220,260,94,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12190,260,64,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12191,260,65,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12202,260,76,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12208,260,82,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12201,260,75,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12202,260,76,5])},"rands":[{"$":"toplevel","depth":9,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12208,260,82,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12221,260,95,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12227,260,101,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12220,260,94,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12221,260,95,5])},"rands":[{"$":"toplevel","depth":9,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12227,260,101,10])}]}}}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12308,261,53,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12320,261,65,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12307,261,52,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12308,261,53,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12358,262,32,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12376,262,50,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12378,262,52,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12357,262,31,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12358,262,32,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12379,262,53,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12393,262,67,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12410,262,84,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12378,262,52,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12394,262,68,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12407,262,81,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12393,262,67,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12394,262,68,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])}]}}}}}}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11459,248,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11470,248,30,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11478,248,38,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11484,248,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11492,248,52,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11499,248,59,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11510,248,70,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11514,248,74,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11520,248,80,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11458,248,18,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11459,248,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"constant","value":types.EMPTY}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11189,243,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11193,243,25,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11283,244,25,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11188,243,20,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11189,243,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11194,243,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11197,243,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11203,243,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11209,243,41,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11242,243,74,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11202,243,34,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11203,243,35,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11210,243,42,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11221,243,53,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11237,243,69,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11209,243,41,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11210,243,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11222,243,54,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11232,243,64,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11234,243,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11221,243,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11222,243,54,9])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11284,244,26,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11292,244,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11283,244,25,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11284,244,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11293,244,35,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11298,244,40,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11292,244,34,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11293,244,35,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11044,241,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11048,241,25,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11138,242,25,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11043,241,20,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11044,241,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11049,241,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11052,241,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11058,241,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11064,241,41,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11097,241,74,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11057,241,34,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11058,241,35,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11065,241,42,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11076,241,53,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11092,241,69,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11064,241,41,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11065,241,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11077,241,54,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11087,241,64,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11089,241,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11076,241,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11077,241,54,9])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11139,242,26,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11147,242,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11138,242,25,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11139,242,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11148,242,35,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11153,242,40,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11147,242,34,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11148,242,35,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10717,235,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10720,235,28,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10726,235,34,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10734,235,42,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10767,236,25,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10771,236,29,126]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10927,238,29,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10766,236,24,167])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10767,236,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10772,236,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10775,236,33,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,3,4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10779,236,37,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10783,236,41,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10788,236,46,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10798,236,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10783,236,41,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10802,236,60,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10806,236,64,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10802,236,60,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10807,236,65,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10815,236,73,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10817,236,75,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10806,236,64,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10869,237,41,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10876,237,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10868,237,40,10])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10880,237,52,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10886,237,58,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10888,237,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10879,237,51,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10880,237,52,5])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10542,232,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10545,232,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10547,232,26,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10557,232,36,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10563,232,42,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10586,232,65,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10556,232,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10557,232,36,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10564,232,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10567,232,46,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10571,232,50,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10580,232,59,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10582,232,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10570,232,49,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10330,228,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10333,228,25,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10336,228,28,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10341,228,33,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10351,228,43,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10364,228,56,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10421,229,43,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10434,229,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10340,228,32,107])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10352,228,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10360,228,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10351,228,43,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10352,228,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10365,228,57,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10373,228,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10364,228,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10365,228,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10422,229,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10430,229,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10421,229,43,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10422,229,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10435,229,57,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10443,229,65,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10434,229,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10435,229,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10137,225,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10141,225,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10143,225,29,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10172,225,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10141,225,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10144,225,30,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10160,225,46,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10143,225,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10144,225,30,15])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10203,226,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10206,226,30,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10210,226,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10221,226,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10209,226,33,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10222,226,46,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10230,226,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10221,226,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10222,226,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10262,227,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10265,227,30,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10269,227,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10280,227,45,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10292,227,57,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10268,227,33,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10281,227,46,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10289,227,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10280,227,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10281,227,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10293,227,58,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10301,227,66,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10292,227,57,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10293,227,58,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9794,220,13,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9802,220,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9804,220,23,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9808,220,27,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9861,221,27,204]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10093,224,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9807,220,26,304])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9808,220,27,10])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9862,221,28,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9866,221,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9868,221,34,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9901,221,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9866,221,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9869,221,35,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9885,221,51,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9868,221,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9869,221,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9937,222,32,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9947,222,42,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9959,222,54,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9936,222,31,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9937,222,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9948,222,43,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9956,222,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9947,222,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9948,222,43,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9960,222,55,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9975,222,70,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9987,222,82,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9959,222,54,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9976,222,71,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9984,222,79,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9975,222,70,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9976,222,71,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10023,223,32,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10038,223,47,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10050,223,59,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10062,223,71,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10022,223,31,42])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10039,223,48,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10047,223,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10038,223,47,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10039,223,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10051,223,60,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10059,223,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10050,223,59,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10051,223,60,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10094,224,28,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10108,224,42,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10093,224,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10094,224,28,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9721,218,31,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9733,218,43,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9720,218,30,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9721,218,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9661,217,27,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9673,217,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9660,217,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9661,217,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9605,216,27,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9617,216,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9604,216,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9605,216,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9434,213,20,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9445,213,31,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9482,213,68,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9433,213,19,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9434,213,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9446,213,32,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9456,213,42,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9468,213,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9445,213,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9446,213,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9457,213,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9459,213,45,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9465,213,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9456,213,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9457,213,43,1])},"rands":[{"$":"toplevel","depth":7,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9459,213,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9469,213,55,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9471,213,57,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9478,213,64,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9468,213,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9469,213,55,1])},"rands":[{"$":"toplevel","depth":7,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9471,213,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16466,350,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16466,350,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16471,350,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16489,352,5,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16500,352,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16489,352,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16522,353,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16530,353,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16522,353,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16550,354,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16558,354,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16550,354,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16578,355,5,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16585,355,12,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":216,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16578,355,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16604,356,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16613,356,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":238,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16604,356,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16634,357,5,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16640,357,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16634,357,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16662,358,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16670,358,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":165,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16662,358,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16690,359,5,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16696,359,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16690,359,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16714,360,5,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16720,360,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16714,360,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16738,361,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16746,361,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16738,361,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17257,373,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17257,373,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17269,373,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17271,373,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17273,373,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17287,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17292,374,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17294,374,10,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17336,374,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17292,374,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17295,374,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17299,374,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17294,374,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17295,374,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17300,374,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17302,374,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17318,374,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17299,374,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17300,374,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17303,374,19,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17315,374,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17302,374,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17303,374,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17319,374,35,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17331,374,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17318,374,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17319,374,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17287,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17355,375,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17357,375,10,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17399,375,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17355,375,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17358,375,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17362,375,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17357,375,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17358,375,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17363,375,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17365,375,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17381,375,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17362,375,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17363,375,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17366,375,19,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17378,375,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17365,375,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17366,375,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17382,375,35,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17394,375,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17381,375,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17382,375,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17287,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17418,376,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17420,376,10,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17462,376,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17418,376,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17421,376,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17425,376,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17420,376,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17421,376,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17426,376,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17428,376,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17444,376,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17425,376,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17426,376,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17429,376,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17441,376,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17428,376,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17429,376,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17445,376,35,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17457,376,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17444,376,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17445,376,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17287,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17481,377,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17483,377,10,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17525,377,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17481,377,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17484,377,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17488,377,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17483,377,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17484,377,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17489,377,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17491,377,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17507,377,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17488,377,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17489,377,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17492,377,19,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17504,377,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17491,377,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17492,377,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17508,377,35,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17520,377,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17507,377,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17508,377,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17630,381,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17630,381,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17638,381,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17640,381,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17646,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17651,382,8,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17658,382,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17674,382,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17651,382,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17659,382,16,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17671,382,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17658,382,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17659,382,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17675,382,32,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17687,382,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17674,382,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17675,382,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17646,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17699,383,8,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17706,383,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17722,383,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17699,383,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17707,383,16,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17719,383,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17706,383,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17707,383,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17723,383,32,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17735,383,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17722,383,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17723,383,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17646,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17747,384,8,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17754,384,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17770,384,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17747,384,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17755,384,16,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17767,384,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17754,384,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17755,384,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17771,384,32,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17783,384,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17770,384,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17771,384,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17646,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17795,385,8,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17802,385,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17818,385,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17795,385,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17803,385,16,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17815,385,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17802,385,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17803,385,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17819,385,32,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17831,385,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17818,385,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17819,385,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18383,398,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18383,398,9,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18394,398,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18410,400,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18418,400,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18410,400,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18426,401,5,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18438,401,17,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18425,401,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":200,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18426,401,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18471,406,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18471,406,9,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18487,406,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18489,406,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18491,406,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18493,406,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18499,407,3,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18501,407,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18509,407,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18498,407,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18499,407,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18502,407,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18504,407,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18506,407,10,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18501,407,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18502,407,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18523,409,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18523,409,9,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18546,409,32,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18553,409,39,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18557,409,43,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18563,409,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18573,410,2,345]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18582,410,11,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18616,411,11,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18652,412,13,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18573,410,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18573,410,2,345]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18580,410,9,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18614,411,9,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18648,412,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18709,413,5,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18721,414,5,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18766,415,5,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18811,416,5,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18866,417,5,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18708,413,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18709,413,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18722,414,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18726,414,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18728,414,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18730,414,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18726,414,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18734,414,18,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18739,414,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18733,414,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18734,414,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18740,414,24,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18744,414,28,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18752,414,36,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18739,414,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18745,414,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18747,414,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18749,414,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18744,414,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18745,414,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18767,415,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18771,415,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18773,415,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18775,415,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18771,415,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18779,415,18,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18784,415,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18778,415,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18779,415,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18785,415,24,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18789,415,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18791,415,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18784,415,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18792,415,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18794,415,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18796,415,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18791,415,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18792,415,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18812,416,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18816,416,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18818,416,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18820,416,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18816,416,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18821,416,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18823,416,17,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18829,416,23,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18820,416,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18821,416,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18834,416,28,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18839,416,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18833,416,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18834,416,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18840,416,34,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18844,416,38,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18852,416,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18839,416,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18845,416,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18847,416,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18849,416,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18844,416,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18845,416,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18867,417,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18871,417,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18873,417,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18875,417,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18871,417,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18876,417,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18878,417,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18885,417,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18875,417,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18876,417,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18890,417,29,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18895,417,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18889,417,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18890,417,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18896,417,35,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18900,417,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18902,417,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18895,417,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18903,417,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18905,417,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18907,417,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18902,417,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18903,417,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18583,410,12,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18593,410,22,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18597,410,26,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18582,410,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":176,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18583,410,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18617,411,12,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18623,411,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18616,411,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":223,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18617,411,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18624,411,19,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18626,411,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18630,411,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18623,411,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18624,411,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18653,412,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18661,412,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18663,412,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18667,412,28,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18683,412,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18685,412,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18687,412,48,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18693,412,54,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18666,412,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18667,412,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18930,419,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18930,419,9,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18953,419,32,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18960,419,39,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18966,419,45,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18973,419,52,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18981,419,60,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18989,419,68,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19001,419,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19014,420,2,973]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19027,420,15,53]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19096,421,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19123,422,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19014,420,2,973])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19014,420,2,973]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19021,420,9,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19091,421,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19118,422,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19156,424,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19213,426,25,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19217,426,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19212,426,24,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19213,426,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19218,426,30,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19225,426,37,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19217,426,29,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":222,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19218,426,30,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19253,427,20,701]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19263,427,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19253,427,20,701])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19253,427,20,701]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19260,427,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19331,429,25,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19336,429,30,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19342,429,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19330,429,24,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19331,429,25,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19343,429,37,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19347,429,41,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19342,429,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":235,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19343,429,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19386,430,31,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19390,430,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19385,430,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19386,430,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19391,430,36,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19400,430,45,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19405,430,50,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19408,430,53,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19390,430,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":220,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19391,430,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19475,432,29,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19485,432,39,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19490,432,44,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19493,432,47,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19474,432,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":218,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19475,432,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19526,433,29,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19531,433,34,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19536,433,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19525,433,28,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19526,433,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19537,433,40,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19542,433,45,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19545,433,48,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19536,433,39,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19537,433,40,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19581,434,29,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19586,434,34,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19627,435,34,291])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19580,434,28,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19581,434,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19628,435,35,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19635,435,42,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19683,436,42,234])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19627,435,34,291])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19628,435,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19684,436,43,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19691,436,50,127]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19869,438,50,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19683,436,42,234])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19684,436,43,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19692,436,51,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19700,436,59,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6,8,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19759,437,53,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19771,437,65,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19795,437,89,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19807,437,101,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19758,437,52,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19759,437,53,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19772,437,66,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19783,437,77,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19790,437,84,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19771,437,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19772,437,66,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19870,438,51,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19893,438,74,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19900,438,81,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19903,438,84,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19909,438,90,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19869,438,50,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19870,438,51,22])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19379,430,24,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19379,430,24,542])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19379,430,24,542])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19947,439,25,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19946,439,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19264,427,31,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19268,427,35,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19263,427,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19264,427,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19206,426,18,749])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19206,426,18,749])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19206,426,18,749])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19968,440,9,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19967,440,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19028,420,16,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19033,420,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19027,420,15,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19028,420,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19034,420,22,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19050,420,38,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19058,420,46,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19066,420,54,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19072,420,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19033,420,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19034,420,22,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19097,421,15,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19096,421,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":205,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19097,421,15,9])},"rands":[]}}},{"$":"constant","value":types.EMPTY}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19999,443,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19999,443,9,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20016,443,26,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20020,443,30,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20028,443,38,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20036,443,46,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20049,443,59,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20067,443,77,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20077,443,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20097,444,9,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20100,444,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20097,444,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20097,444,9,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20098,444,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20149,445,9,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20156,445,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20149,445,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20149,445,9,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20150,445,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20184,446,9,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20192,446,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20184,446,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20184,446,9,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20185,446,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20221,447,9,142]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20224,447,12,138])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20221,447,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20221,447,9,142]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20222,447,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20373,450,9,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20376,450,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20373,450,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20373,450,9,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20374,450,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20433,452,13,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20437,452,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20432,452,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20433,452,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20438,452,18,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20446,452,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20448,452,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20437,452,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20438,452,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20461,453,9,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20470,453,18,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20525,454,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20460,453,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":221,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20461,453,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20471,453,19,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20479,453,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20485,453,33,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20497,453,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20499,453,47,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20503,453,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20484,453,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20485,453,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20526,454,19,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20549,454,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20551,454,44,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20557,454,50,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20564,454,57,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20572,454,65,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20580,454,73,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20582,454,75,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20525,454,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20526,454,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20426,452,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20426,452,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20426,452,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20602,455,7,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20621,455,26,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20638,455,43,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20644,455,49,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20601,455,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":233,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20602,455,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20622,455,27,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20635,455,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20621,455,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20622,455,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20377,450,13,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20388,450,24,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20376,450,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20377,450,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20225,447,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20259,448,17,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20270,448,28,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20258,448,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20259,448,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20301,449,17,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20312,449,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20314,449,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20300,449,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20301,449,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20315,449,31,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20331,449,47,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20339,449,55,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20347,449,63,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20353,449,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20314,449,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20315,449,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20193,446,18,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20206,446,31,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20192,446,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20193,446,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20157,445,17,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20169,445,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20156,445,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20157,445,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20101,444,13,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20114,444,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20100,444,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20101,444,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20115,444,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20133,444,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20114,444,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":219,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20115,444,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20665,457,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20665,457,9,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20689,457,33,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20693,457,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20707,458,3,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20724,458,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20728,458,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20730,458,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20732,458,28,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20735,458,31,20]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20756,458,52,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20766,458,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20706,458,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20707,458,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20736,458,32,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20747,458,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20749,458,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20751,458,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20753,458,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20735,458,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":207,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20736,458,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20779,459,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20779,459,9,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20804,459,34,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20808,459,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20821,460,2,442]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20833,460,14,20]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20876,461,21,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20897,462,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20913,463,13,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20951,464,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20821,460,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20821,460,2,442]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20828,460,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20864,461,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20889,462,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20909,463,9,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20947,464,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20983,465,5,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21006,466,5,207]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21219,471,5,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21223,471,9,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21227,471,13,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21239,471,25,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21244,471,30,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21254,471,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20982,465,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20983,465,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21007,466,6,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21030,467,6,135]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21172,470,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21174,470,8,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21178,470,12,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21190,470,24,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21195,470,29,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21205,470,39,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21006,466,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21007,466,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21031,467,7,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21055,468,7,61]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21124,469,7,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21128,469,11,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21130,469,13,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21142,469,25,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21147,469,30,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21157,469,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21030,467,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21031,467,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21056,468,8,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21073,468,25,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21077,468,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21079,468,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21081,468,33,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21093,468,45,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21098,468,50,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21108,468,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21055,468,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21056,468,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20834,460,15,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20845,460,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20847,460,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20849,460,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20851,460,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20833,460,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":207,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20834,460,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20914,463,14,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20916,463,16,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20934,463,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20913,463,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20914,463,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20917,463,17,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20929,463,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20916,463,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20917,463,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20952,464,14,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20954,464,16,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20973,464,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20951,464,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20952,464,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20955,464,17,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20968,464,30,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20954,464,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20955,464,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21432,476,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21432,476,9,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21446,476,23,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21450,476,27,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21463,476,40,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21481,476,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21494,477,2,299]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21505,477,13,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21545,478,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21494,477,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21494,477,2,299]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21501,477,9,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21541,478,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21583,479,5,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21607,480,5,137]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21750,485,5,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21773,486,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21582,479,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":233,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21583,479,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21608,480,6,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21612,480,10,97]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21720,484,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21607,480,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21608,480,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21613,480,11,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21621,480,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21637,481,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21641,481,17,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21653,481,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21655,481,31,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21659,481,35,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21641,481,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21721,484,11,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21739,484,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21720,484,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":219,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21721,484,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21751,485,6,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21763,485,18,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21750,485,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21751,485,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21774,486,6,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21787,486,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21773,486,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21774,486,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21506,477,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21517,477,25,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21505,477,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21506,477,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21546,478,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21557,478,25,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21545,478,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21546,478,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21916,489,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21916,489,9,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21929,489,22,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21933,489,26,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21946,489,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21960,490,3,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21974,490,17,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21978,490,21,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21991,490,34,20]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22012,490,55,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21959,490,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21960,490,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21992,490,35,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22003,490,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22005,490,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22007,490,50,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22009,490,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21991,490,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":207,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21992,490,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22159,494,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22159,494,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22171,494,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22179,495,3,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22204,495,28,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22221,495,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22178,495,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22179,495,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22205,495,29,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22216,495,40,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22204,495,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22205,495,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22278,498,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22278,498,9,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22291,498,22,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22295,498,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22304,499,3,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22315,499,14,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22319,499,18,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22347,499,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22303,499,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22304,499,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22320,499,19,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22334,499,33,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22339,499,38,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22319,499,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":170,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22320,499,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22348,499,47,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22360,499,59,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22347,499,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22348,499,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22461,506,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22461,506,9,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22477,506,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22483,507,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22617,511,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22617,511,9,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22632,511,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22638,512,3,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22652,512,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22637,512,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22638,512,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22653,512,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22669,512,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22652,512,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22653,512,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22762,518,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22762,518,9,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22776,518,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22782,519,3,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22787,519,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22789,519,10,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22792,519,13,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22781,519,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22782,519,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22887,523,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22887,523,9,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22901,523,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22907,524,3,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22921,524,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22906,524,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22907,524,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22922,524,18,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22937,524,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22921,524,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":194,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22922,524,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23108,530,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23108,530,9,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23119,530,20,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23130,530,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23132,530,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23134,530,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23149,531,3,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23160,531,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23171,531,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23173,531,27,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23181,531,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23148,531,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23149,531,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23174,531,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23176,531,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23178,531,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23173,531,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23174,531,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23361,536,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23361,536,9,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23371,536,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23382,536,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23384,536,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23386,536,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23401,537,3,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23413,537,15,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23424,537,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23426,537,28,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23458,537,60,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23400,537,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23401,537,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23427,537,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23429,537,31,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23455,537,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23426,537,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23427,537,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23430,537,32,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23443,537,45,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23429,537,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23430,537,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23545,540,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23545,540,9,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23548,540,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23552,540,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23554,540,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23556,540,20,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23551,540,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23552,540,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23778,545,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23778,545,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23783,545,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23787,545,18,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23791,545,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23786,545,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23787,545,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23792,545,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23794,545,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23796,545,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23791,545,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23792,545,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23797,545,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23799,545,30,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23802,545,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23796,545,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23797,545,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23799,545,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24030,550,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24030,550,9,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24037,550,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24041,550,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24045,550,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24040,550,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":231,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24041,550,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24046,550,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24048,550,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24050,550,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24045,550,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24046,550,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24051,550,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24053,550,32,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24056,550,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24050,550,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24051,550,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24053,550,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24282,555,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24282,555,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24290,555,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24294,555,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24298,555,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24293,555,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24294,555,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24299,555,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24301,555,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24303,555,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24298,555,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24299,555,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24304,555,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24306,555,33,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24309,555,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24303,555,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24304,555,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24306,555,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24392,559,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24392,559,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24397,559,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24405,560,3,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24414,560,12,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24418,560,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24404,560,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":209,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24405,560,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24419,560,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24426,560,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24418,560,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24419,560,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24427,560,25,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24434,560,32,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24426,560,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24427,560,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24549,564,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24549,564,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24557,564,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24559,564,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24566,565,3,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24576,566,3,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24609,567,3,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24565,565,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24566,565,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24577,566,4,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24585,566,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24591,566,18,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24598,566,25,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24602,566,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24590,566,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":202,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24591,566,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24623,569,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24623,569,9,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24627,569,13,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24629,569,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24635,570,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24639,570,7,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24645,570,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24639,570,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24649,570,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24657,570,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24659,570,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24648,570,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24649,570,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24663,570,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24667,570,35,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24671,570,39,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24684,570,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":225,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24667,570,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24672,570,40,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24679,570,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24681,570,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24671,570,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":202,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24672,570,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24707,572,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24707,572,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24715,572,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24723,573,3,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24731,573,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24735,573,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24722,573,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24723,573,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24736,573,16,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24746,573,26,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24764,573,44,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24783,573,63,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24791,573,71,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24735,573,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24736,573,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24747,573,27,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24759,573,39,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24746,573,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24747,573,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24765,573,45,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24778,573,58,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24764,573,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24765,573,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24811,575,9,7])}],"body":{"$":"lam","name":types.symbol("flatten"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24811,575,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24819,575,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24836,577,6,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24842,577,12,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24836,577,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24851,578,6,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24858,578,13,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24889,579,13,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24850,578,5,57])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24851,578,6,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24859,578,14,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24867,578,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24858,578,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24859,578,14,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24868,578,23,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24872,578,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24867,578,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24868,578,23,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24890,579,14,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24898,579,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24889,579,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24890,579,14,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24899,579,23,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24903,579,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24898,579,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":235,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24899,579,23,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24915,580,6,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24921,580,12,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24915,580,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])}]}}},"then":{"$":"constant","value":types.EMPTY},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24950,583,6,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24955,583,11,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24949,583,5,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24950,583,6,4])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])}]}}}}}}}}]}}, 'provides': ["cosine","sine","subset?","tangent","type","sq","string->image","make-game","pick","play","put-image","number->image","overlay-at","in?","boolean->image","clipart/url","color->alpha","boolean->string","*player-y*","*score*","*player-x*"]}; +window.COLLECTIONS["bootstrap2012/bootstrap-tilt-teachpack"] = { 'name': "bootstrap2012/bootstrap-tilt-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"set!"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"update-danger*"},{"$":"global-bucket","value":"update-target*"},{"$":"global-bucket","value":"update-player*"},{"$":"global-bucket","value":"onscreen*?"},{"$":"global-bucket","value":"collide*?"},{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"collide?"},{"$":"global-bucket","value":"update"},{"$":"global-bucket","value":"enemies"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"targetImgs"},{"$":"global-bucket","value":"dangerImgs"},{"$":"global-bucket","value":"update-player"},{"$":"global-bucket","value":"projectileImg"},{"$":"global-bucket","value":"update-projectile*"},{"$":"global-bucket","value":"update-danger"},{"$":"global-bucket","value":"update-target"},{"$":"global-bucket","value":"hitables"},{"$":"global-bucket","value":"update-projectile"},{"$":"global-bucket","value":"shootables"},{"$":"global-bucket","value":"reset-chars"},{"$":"global-bucket","value":"hit-by?"},{"$":"global-bucket","value":"timer"},{"$":"global-bucket","value":"title"},{"$":"global-bucket","value":"bg"},{"$":"global-bucket","value":"player"},{"$":"global-bucket","value":"targets"},{"$":"global-bucket","value":"projectiles"},{"$":"global-bucket","value":"dangers"},{"$":"global-bucket","value":"tap"},{"$":"global-bucket","value":"tilt"},{"$":"global-bucket","value":"keypress"},{"$":"global-bucket","value":"next-posn"},{"$":"global-bucket","value":"next-x"},{"$":"global-bucket","value":"f"},{"$":"global-bucket","value":"score-string"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"screen-point"},{"$":"global-bucket","value":"player-point"},{"$":"global-bucket","value":"py"},{"$":"global-bucket","value":"color"},{"$":"global-bucket","value":"background"},{"$":"global-bucket","value":"cy"},{"$":"global-bucket","value":"cx"},{"$":"global-bucket","value":"px"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"world-title"},{"$":"global-bucket","value":"world-with-shots"},{"$":"global-bucket","value":"world-with-timer"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"wrap-update"},{"$":"global-bucket","value":"world-with-targets"},{"$":"global-bucket","value":"world-with-player"},{"$":"global-bucket","value":"world-with-score"},{"$":"global-bucket","value":"world-with-dangers"},{"$":"global-bucket","value":"world-targets"},{"$":"global-bucket","value":"world-timer"},{"$":"global-bucket","value":"world-shots"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"world-player"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-score"},{"$":"global-bucket","value":"world-dangers"},{"$":"global-bucket","value":"world-bg"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"spacing"},{"$":"global-bucket","value":"reset"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"play"},{"$":"global-bucket","value":"posn->point"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"draw-being"},{"$":"global-bucket","value":"fit-image-to"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"make-being"},{"$":"global-bucket","value":"make-game"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"flatten"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"cull"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"TITLE-COLOR"},{"$":"global-bucket","value":"being?"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"boolean->image"},{"$":"global-bucket","value":"being-posn"},{"$":"global-bucket","value":"being-set!"},{"$":"global-bucket","value":"being-x"},{"$":"global-bucket","value":"being-y"},{"$":"global-bucket","value":"being-ref"},{"$":"global-bucket","value":"being"},{"$":"global-bucket","value":"being-costume"},{"$":"global-bucket","value":"add-informative-triangle"},{"$":"global-bucket","value":"animate/proc"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"TOLERANCE"},{"$":"global-bucket","value":"BACKGROUND"},{"$":"global-bucket","value":"HEIGHT"},{"$":"global-bucket","value":"LOSS-SCORE"},{"$":"global-bucket","value":"RESTING-TOP-DOWN-ORIENTATION"},{"$":"global-bucket","value":"EXPLOSION-COLOR"},{"$":"global-bucket","value":"*player-x*"},{"$":"global-bucket","value":"*score*"},{"$":"global-bucket","value":"*target-increment*"},{"$":"global-bucket","value":"-TOLERANCE"},{"$":"global-bucket","value":"*player-y*"},{"$":"global-bucket","value":"*distance*"},{"$":"global-bucket","value":"*line-length*"},{"$":"global-bucket","value":"*distances-color*"},{"$":"global-bucket","value":"*danger-increment*"},{"$":"module-variable","sym":types.symbol("line"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("stop-when"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("unbox"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text/font"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("round"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("set-box!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("scale"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("radial-star"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-x"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn-y"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("ormap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tick"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tilt"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-tap"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("null?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-posn"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("crop"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldl"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("inexact->exact"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("compose"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("box"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("apply"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",193,9,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",212,10,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",232,11,8,15])}],"body":{"$":"constant","value":"gray"}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",264,12,8,11])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",277,12,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",281,12,25,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",276,12,20,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",276,12,20,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",277,12,21,3])},"rands":[{"$":"constant","value":"white"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",299,13,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",311,13,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",315,13,24,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",310,13,19,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",310,13,19,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",311,13,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",316,13,25,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",326,13,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",332,13,41,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",339,13,48,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",347,13,56,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",315,13,24,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",315,13,24,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",316,13,25,9])},"rands":[{"$":"toplevel","depth":5,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",326,13,35,5])},{"$":"toplevel","depth":5,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",332,13,41,6])},{"$":"constant","value":"solid"},{"$":"constant","value":"black"}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",367,14,9,7])}],"body":{"$":"lam","name":types.symbol("spacing"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",367,14,9,7])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",377,14,19,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",384,14,26,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",376,14,18,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",376,14,18,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",377,14,19,6])},"rands":[{"$":"constant","value":200}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",398,15,8,18])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",429,16,8,18])}],"body":{"$":"constant","value":-50}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",461,17,8,10])}],"body":{"$":"constant","value":0}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",522,20,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",531,20,17,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",535,20,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",530,20,16,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",530,20,16,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",531,20,17,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",547,21,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",559,21,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",563,21,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",558,21,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",558,21,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",559,21,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",575,22,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",587,22,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",591,22,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",586,22,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",586,22,19,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",587,22,20,3])},"rands":[{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",626,25,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",641,25,23,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",645,25,27,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",640,25,22,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",640,25,22,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",641,25,23,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",646,25,28,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",653,25,35,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",655,25,37,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",671,26,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",683,26,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",687,26,24,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",682,26,19,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",682,26,19,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",683,26,20,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",688,26,25,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",695,26,32,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",698,26,35,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",701,26,38,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",704,26,41,2])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[],"closure-types":[],"max-let-depth":0,"body":{"$":"constant","value":0}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",721,27,8,17])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",740,27,27,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",744,27,31,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",739,27,26,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",739,27,26,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":239,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",740,27,27,3])},"rands":[{"$":"constant","value":""}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",796,30,8,9])}],"body":{"$":"constant","value":20}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",818,31,8,10])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",830,31,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",832,31,22,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",829,31,19,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",829,31,19,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",830,31,20,1])},"rands":[{"$":"toplevel","depth":1,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",832,31,22,9])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",913,34,8,28])}],"body":{"$":"constant","value":40}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1086,38,9,12])}],"body":{"$":"lam","name":types.symbol("fit-image-to"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1086,38,9,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1099,38,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1101,38,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1103,38,26,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1131,40,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1133,40,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1156,40,33,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1131,40,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1134,40,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1146,40,23,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1133,40,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1133,40,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1134,40,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1157,40,34,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1159,40,36,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1167,40,44,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1156,40,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1156,40,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1157,40,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1160,40,37,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1162,40,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1164,40,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1159,40,36,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1159,40,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1160,40,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1168,40,45,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1181,40,58,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1167,40,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1167,40,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1168,40,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1130,40,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1201,41,8,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1207,41,14,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1236,41,43,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1200,41,7,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1200,41,7,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1201,41,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1208,41,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1210,41,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1212,41,19,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1207,41,14,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1207,41,14,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1208,41,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1213,41,20,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1225,41,32,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1212,41,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1212,41,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1213,41,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1255,42,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1257,42,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1280,42,33,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1255,42,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1258,42,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1270,42,23,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1257,42,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1257,42,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1258,42,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1281,42,34,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1283,42,36,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1291,42,44,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1280,42,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1280,42,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1281,42,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1284,42,37,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1286,42,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1288,42,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1283,42,36,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1283,42,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1284,42,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1292,42,45,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1305,42,58,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1291,42,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1291,42,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1292,42,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1254,42,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1326,43,8,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1332,43,14,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1388,44,14,79]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1325,43,7,143])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1325,43,7,143])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1326,43,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1333,43,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1335,43,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1337,43,19,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1332,43,14,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1332,43,14,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1333,43,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1338,43,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1340,43,22,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1348,43,30,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1337,43,19,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1337,43,19,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1338,43,20,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1341,43,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1343,43,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1345,43,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1340,43,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1340,43,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1341,43,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1349,43,31,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1362,43,44,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1348,43,30,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1348,43,30,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1349,43,31,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1389,44,15,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1394,44,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1396,44,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1398,44,24,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1434,44,60,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1458,44,84,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1388,44,14,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1388,44,14,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1389,44,15,4])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1399,44,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1401,44,27,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1409,44,35,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1398,44,24,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1398,44,24,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1399,44,25,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1402,44,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1404,44,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1406,44,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1401,44,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1401,44,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1402,44,28,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1410,44,36,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1423,44,49,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1409,44,35,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1409,44,35,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1410,44,36,12])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1435,44,61,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1448,44,74,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1434,44,60,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1434,44,60,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1435,44,61,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1478,45,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1480,45,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1503,45,33,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1478,45,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1481,45,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1493,45,23,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1480,45,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1480,45,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1481,45,11,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1504,45,34,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1506,45,36,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1514,45,44,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1503,45,33,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1503,45,33,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1504,45,34,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1507,45,37,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1509,45,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1511,45,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1506,45,36,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1506,45,36,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1507,45,37,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1515,45,45,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1528,45,58,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1514,45,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1514,45,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1515,45,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1477,45,7,62])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1548,46,8,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1554,46,14,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1597,47,14,77]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1547,46,7,128])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1547,46,7,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":174,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1548,46,8,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1555,46,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1557,46,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1559,46,19,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1554,46,14,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1554,46,14,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1555,46,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1560,46,20,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1572,46,32,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1559,46,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1559,46,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1560,46,20,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1598,47,15,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1603,47,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1605,47,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1607,47,24,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1630,47,47,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1665,47,82,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1597,47,14,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1597,47,14,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":211,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1598,47,15,4])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1608,47,25,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1620,47,37,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1607,47,24,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1607,47,24,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1608,47,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1631,47,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1633,47,50,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1641,47,58,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1630,47,47,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1630,47,47,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1631,47,48,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1634,47,51,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1636,47,53,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1638,47,55,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1633,47,50,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1633,47,50,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1634,47,51,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1642,47,59,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1654,47,71,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1641,47,58,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1641,47,58,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1642,47,59,11])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1117,39,4,567])}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1793,52,9,4])}],"body":{"$":"lam","name":types.symbol("cull"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1793,52,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1798,52,14,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1809,53,3,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1816,53,10,126]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1943,54,70,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1808,53,2,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1808,53,2,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1809,53,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1817,53,11,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1825,53,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1834,53,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1836,53,30,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1848,53,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1834,53,28,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1837,53,31,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1845,53,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1836,53,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1836,53,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1837,53,31,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1833,53,27,17])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1852,53,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1854,53,48,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1866,53,60,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1852,53,46,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1855,53,49,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1863,53,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1854,53,48,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1854,53,48,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1855,53,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1866,53,60,5])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1851,53,45,21])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1901,54,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1903,54,30,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1915,54,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1901,54,28,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1904,54,31,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1912,54,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1903,54,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1903,54,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1904,54,31,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1900,54,27,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1829,53,23,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1919,54,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1921,54,48,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1933,54,60,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1919,54,46,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1922,54,49,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1930,54,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1921,54,48,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1921,54,48,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1922,54,49,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1933,54,60,6])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",1918,54,45,22])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2095,61,15,5])},{"$":"toplevel","depth":0,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"toplevel","depth":0,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":203,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"rands":[{"$":"constant","value":types.symbol("being")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("posn")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},"rands":[{"$":"toplevel","depth":3,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2080,61,0,36])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("costume")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2235,65,15,5])},{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":203,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":8},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("dangers")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("shots")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":2},{"$":"constant","value":types.symbol("targets")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":3},{"$":"constant","value":types.symbol("player")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":4},{"$":"constant","value":types.symbol("bg")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":5},{"$":"constant","value":types.symbol("score")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":6},{"$":"constant","value":types.symbol("title")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":199,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},"rands":[{"$":"toplevel","depth":3,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2220,65,0,73])},{"$":"constant","value":7},{"$":"constant","value":types.symbol("timer")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2334,68,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2343,68,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2351,68,25,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2358,68,32,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2342,68,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2342,68,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2343,68,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2351,68,25,6])},{"$":"toplevel","depth":2,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2358,68,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2379,69,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2388,69,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2396,69,25,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2403,69,32,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2387,69,16,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2387,69,16,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":232,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2388,69,17,7])},"rands":[{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2396,69,25,6])},{"$":"toplevel","depth":2,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2403,69,32,10])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2471,72,9,11])}],"body":{"$":"lam","name":types.symbol("posn->point"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2471,72,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2483,72,21,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2490,72,28,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2500,72,38,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2514,72,52,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2489,72,27,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2489,72,27,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2490,72,28,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2501,72,39,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2508,72,46,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2500,72,38,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2500,72,38,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2501,72,39,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2515,72,53,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2517,72,55,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2524,72,62,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2514,72,52,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2514,72,52,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2515,72,53,1])},"rands":[{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2517,72,55,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2525,72,63,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2527,72,65,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2524,72,62,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2524,72,62,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2525,72,63,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2528,72,66,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2535,72,73,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2527,72,65,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2527,72,65,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2528,72,66,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2576,75,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-dangers"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2576,75,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2595,75,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2597,75,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2601,75,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2612,75,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2630,75,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2646,75,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2664,75,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2681,75,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2694,75,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2710,75,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2726,75,159,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2600,75,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2600,75,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2601,75,34,10])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2631,75,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2643,75,76,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2630,75,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2630,75,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2631,75,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2647,75,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2661,75,94,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2646,75,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2646,75,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2647,75,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2665,75,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2678,75,111,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2664,75,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2664,75,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2665,75,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2682,75,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2691,75,124,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2681,75,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2681,75,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2682,75,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2695,75,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2707,75,140,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2694,75,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2694,75,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2695,75,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2711,75,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2723,75,156,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2710,75,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2710,75,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2711,75,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2727,75,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2739,75,172,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2726,75,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2726,75,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2727,75,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2753,76,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-shots"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2753,76,9,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2772,76,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2774,76,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2778,76,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2789,76,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2807,76,63,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2823,76,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2841,76,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2858,76,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2871,76,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2887,76,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2903,76,159,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2777,76,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2777,76,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2778,76,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2790,76,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2804,76,60,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2789,76,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2789,76,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2790,76,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2824,76,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2838,76,94,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2823,76,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2823,76,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2824,76,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2842,76,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2855,76,111,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2841,76,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2841,76,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2842,76,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2859,76,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2868,76,124,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2858,76,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2858,76,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2859,76,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2872,76,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2884,76,140,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2871,76,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2871,76,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2872,76,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2888,76,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2900,76,156,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2887,76,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2887,76,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2888,76,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2904,76,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2916,76,172,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2903,76,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2903,76,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2904,76,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2930,77,9,18])}],"body":{"$":"lam","name":types.symbol("world-with-targets"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2930,77,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2949,77,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2951,77,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2955,77,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2966,77,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2984,77,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3000,77,79,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3018,77,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3035,77,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3048,77,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3064,77,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3080,77,159,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2954,77,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2954,77,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2955,77,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2967,77,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2981,77,60,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2966,77,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2966,77,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2967,77,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2985,77,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2997,77,76,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2984,77,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2984,77,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",2985,77,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3019,77,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3032,77,111,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3018,77,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3018,77,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3019,77,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3036,77,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3045,77,124,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3035,77,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3035,77,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3036,77,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3049,77,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3061,77,140,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3048,77,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3048,77,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3049,77,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3065,77,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3077,77,156,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3064,77,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3064,77,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3065,77,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3081,77,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3093,77,172,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3080,77,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3080,77,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3081,77,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3107,78,9,17])}],"body":{"$":"lam","name":types.symbol("world-with-player"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3107,78,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3126,78,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3128,78,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3132,78,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3143,78,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3161,78,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3177,78,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3195,78,97,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3212,78,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3225,78,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3241,78,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3257,78,159,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3131,78,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3131,78,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3132,78,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3144,78,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3158,78,60,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3143,78,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3143,78,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3144,78,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3162,78,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3174,78,76,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3161,78,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3161,78,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3162,78,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3178,78,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3192,78,94,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3177,78,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3177,78,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3178,78,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3213,78,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3222,78,124,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3212,78,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3212,78,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3213,78,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3226,78,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3238,78,140,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3225,78,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3225,78,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3226,78,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3242,78,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3254,78,156,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3241,78,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3241,78,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3242,78,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3258,78,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3270,78,172,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3257,78,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3257,78,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3258,78,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3284,79,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-score"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3284,79,9,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3303,79,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3305,79,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3309,79,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3320,79,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3338,79,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3354,79,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3372,79,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3389,79,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3402,79,127,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3418,79,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3434,79,159,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3308,79,33,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3308,79,33,142])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3309,79,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3321,79,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3335,79,60,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3320,79,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3320,79,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3321,79,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3339,79,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3351,79,76,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3338,79,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3338,79,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3339,79,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3355,79,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3369,79,94,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3354,79,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3354,79,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3355,79,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3373,79,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3386,79,111,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3372,79,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3372,79,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3373,79,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3390,79,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3399,79,124,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3389,79,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3389,79,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3390,79,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3419,79,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3431,79,156,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3418,79,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3418,79,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3419,79,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3435,79,160,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3447,79,172,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3434,79,159,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3434,79,159,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3435,79,160,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3461,80,9,16])}],"body":{"$":"lam","name":types.symbol("world-with-timer"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3461,80,9,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3480,80,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3482,80,30,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3486,80,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3497,80,45,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3515,80,63,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3531,80,79,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3549,80,97,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3566,80,114,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3579,80,127,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3595,80,143,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3611,80,159,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3485,80,33,128])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3485,80,33,128])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3486,80,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3498,80,46,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3512,80,60,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3497,80,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3497,80,45,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3498,80,46,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3516,80,64,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3528,80,76,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3515,80,63,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3515,80,63,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3516,80,64,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3532,80,80,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3546,80,94,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3531,80,79,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3531,80,79,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3532,80,80,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3550,80,98,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3563,80,111,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3549,80,97,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3549,80,97,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3550,80,98,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3567,80,115,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3576,80,124,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3566,80,114,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3566,80,114,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3567,80,115,8])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3580,80,128,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3592,80,140,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3579,80,127,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3579,80,127,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3580,80,128,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3596,80,144,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3608,80,156,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3595,80,143,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3595,80,143,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3596,80,144,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3690,83,9,24])}],"body":{"$":"lam","name":types.symbol("add-informative-triangle"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3690,83,9,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3715,83,34,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3718,83,37,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3721,83,40,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3727,83,46,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3748,84,9,78]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3762,84,23,63]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3748,84,9,78])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3748,84,9,78])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3748,84,9,78]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3749,84,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3836,85,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3840,85,13,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3836,85,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3836,85,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3836,85,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3837,85,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3872,86,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3876,86,13,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3872,86,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3872,86,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3872,86,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3873,86,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3905,87,5,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3909,87,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3914,87,14,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3916,87,16,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3919,87,19,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3914,87,14,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3913,87,13,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3909,87,9,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3924,87,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3926,87,26,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3929,87,29,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3924,87,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3923,87,23,9])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3908,87,8,25])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4001,89,8,839]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4011,89,18,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4040,90,18,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4071,91,20,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4001,89,8,839])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4001,89,8,839])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4001,89,8,839]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4008,89,15,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4037,90,15,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4066,91,15,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4145,92,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4169,93,11,52]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4233,94,11,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4249,94,27,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4263,95,11,575]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4144,92,10,695])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4144,92,10,695])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4145,92,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4170,93,12,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4175,93,17,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4212,93,54,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4215,93,57,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4169,93,11,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4169,93,11,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4170,93,12,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4176,93,18,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4181,93,23,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4175,93,17,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4175,93,17,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4182,93,24,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4204,93,46,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4207,93,49,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4181,93,23,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4181,93,23,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4183,93,25,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4189,93,31,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4182,93,24,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4182,93,24,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4183,93,25,5])},"rands":[{"$":"toplevel","depth":11,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4189,93,31,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4234,94,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4236,94,14,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4239,94,17,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4233,94,11,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4233,94,11,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4234,94,12,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4240,94,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4242,94,20,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4245,94,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4239,94,17,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4239,94,17,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4240,94,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4264,95,12,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4288,96,12,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4318,97,12,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4334,97,28,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4349,98,12,488]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4263,95,11,575])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4263,95,11,575])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4264,95,12,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4289,96,13,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4294,96,18,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4297,96,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4299,96,23,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4288,96,12,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4288,96,12,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4289,96,13,4])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4319,97,13,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4321,97,15,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4324,97,18,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4318,97,12,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4318,97,12,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4319,97,13,1])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4325,97,19,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4327,97,21,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4330,97,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4324,97,18,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4324,97,18,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4325,97,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4350,98,13,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4375,99,13,52]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4441,100,13,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4444,100,16,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4473,101,13,363]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4349,98,12,488])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4349,98,12,488])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4350,98,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4376,99,14,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4381,99,19,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4418,99,56,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4421,99,59,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4375,99,13,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4375,99,13,52])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4376,99,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4382,99,20,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4387,99,25,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4381,99,19,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4381,99,19,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4388,99,26,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4410,99,48,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4413,99,51,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4387,99,25,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4387,99,25,29])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4389,99,27,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4395,99,33,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4388,99,26,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4388,99,26,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4389,99,27,5])},"rands":[{"$":"toplevel","depth":19,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4395,99,33,13])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4445,100,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4447,100,19,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4450,100,22,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4444,100,16,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4444,100,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4445,100,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4451,100,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4453,100,25,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4456,100,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4450,100,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4450,100,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4451,100,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4474,101,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4500,102,14,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4532,103,14,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4535,103,17,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4565,104,14,270]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4473,101,13,363])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4473,101,13,363])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4474,101,14,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4501,102,15,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4506,102,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4508,102,22,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4511,102,25,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4500,102,14,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4500,102,14,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":19,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4501,102,15,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4536,103,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4538,103,20,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4541,103,23,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4535,103,17,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4535,103,17,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":18,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4536,103,18,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4542,103,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4544,103,26,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4547,103,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4541,103,23,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4541,103,23,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4542,103,24,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4566,104,15,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4593,105,15,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4664,106,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4680,106,31,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4711,107,15,123]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4565,104,14,270])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4565,104,14,270])},"body":{"$":"application","rator":{"$":"toplevel","depth":20,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4566,104,15,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4594,105,16,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4599,105,21,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4639,105,61,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4642,105,64,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4593,105,15,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4593,105,15,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":23,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4594,105,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4600,105,22,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4605,105,27,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4599,105,21,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4599,105,21,39])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4606,105,28,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4625,105,47,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4628,105,50,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4631,105,53,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4634,105,56,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4605,105,27,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4605,105,27,32])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4607,105,29,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4613,105,35,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4606,105,28,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4606,105,28,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":29,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4607,105,29,5])},"rands":[{"$":"toplevel","depth":29,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4613,105,35,10])}]}}},"rands":[{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":12},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4665,106,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4667,106,18,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4670,106,21,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4664,106,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4664,106,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4665,106,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4671,106,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4673,106,24,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4676,106,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4670,106,21,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4670,106,21,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4671,106,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4681,106,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4683,106,34,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4686,106,37,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4680,106,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4680,106,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":22,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4681,106,32,1])},"rands":[{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4687,106,38,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4689,106,40,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4692,106,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4686,106,37,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4686,106,37,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4687,106,38,1])},"rands":[{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4712,107,16,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4740,108,16,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4775,109,16,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4791,109,32,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4823,110,16,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4711,107,15,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4711,107,15,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":24,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4712,107,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4741,108,17,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4746,108,22,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4749,108,25,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4752,108,28,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4740,108,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4740,108,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":27,"pos":152,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4741,108,17,4])},"rands":[{"$":"localref","unbox?":false,"pos":34,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4776,109,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4778,109,19,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4781,109,22,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4775,109,16,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4775,109,16,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4776,109,17,1])},"rands":[{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4782,109,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4784,109,25,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4787,109,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4781,109,22,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4781,109,22,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4782,109,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":35,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4792,109,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4794,109,35,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4797,109,38,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4791,109,32,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4791,109,32,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":26,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4792,109,33,1])},"rands":[{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4798,109,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4800,109,41,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4803,109,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4797,109,38,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4797,109,38,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4798,109,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":36,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4012,89,19,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4014,89,21,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4017,89,24,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4011,89,18,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4011,89,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4012,89,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4041,90,19,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4043,90,21,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4046,90,24,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4040,90,18,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4040,90,18,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4041,90,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4072,91,21,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4080,91,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4086,91,35,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4101,91,50,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4085,91,34,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4085,91,34,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":194,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4086,91,35,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4102,91,51,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4117,91,66,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4101,91,50,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4101,91,50,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":214,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4102,91,51,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4118,91,67,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4124,91,73,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4117,91,66,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4117,91,66,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":171,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4118,91,67,5])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3877,86,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3884,86,21,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3876,86,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3876,86,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3877,86,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3841,85,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3848,85,21,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3840,85,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3840,85,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3841,85,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3763,84,24,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3775,84,36,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3762,84,23,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3762,84,23,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3763,84,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3776,84,37,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3786,84,47,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3805,84,66,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3775,84,36,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3775,84,36,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3776,84,37,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3787,84,48,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3793,84,54,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3786,84,47,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3786,84,47,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3787,84,48,5])},"rands":[{"$":"toplevel","depth":5,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3793,84,54,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3806,84,67,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3812,84,73,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3805,84,66,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3805,84,66,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3806,84,67,5])},"rands":[{"$":"toplevel","depth":5,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",3812,84,73,10])}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4962,114,9,10])}],"body":{"$":"lam","name":types.symbol("draw-being"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4962,114,9,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4973,114,20,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",4979,114,26,10])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5000,115,9,47]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5014,115,23,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5000,115,9,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5000,115,9,47])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5000,115,9,47]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5001,115,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5057,116,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5061,116,13,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5057,116,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5057,116,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5057,116,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5058,116,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5093,117,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5097,117,13,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5093,117,9,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5093,117,9,26])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5093,117,9,26]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5094,117,10,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5129,118,9,235]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5140,118,20,223]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5129,118,9,235])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5129,118,9,235])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5129,118,9,235]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5130,118,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5371,122,5,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5383,122,17,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5405,122,39,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5408,122,42,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5411,122,45,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5370,122,4,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5370,122,4,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5371,122,5,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5384,122,18,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5398,122,32,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5383,122,17,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5383,122,17,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5384,122,18,13])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5141,118,21,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5145,118,25,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5154,118,34,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5180,118,60,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5145,118,25,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5155,118,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5161,118,41,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5154,118,34,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5154,118,34,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5155,118,35,5])},"rands":[{"$":"toplevel","depth":8,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5161,118,41,17])}]}}},{"$":"constant","value":""}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5144,118,24,39])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5244,120,25,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5269,120,50,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5272,120,53,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5275,120,56,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5351,121,50,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5243,120,24,119])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5243,120,24,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5244,120,25,24])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5276,120,57,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5282,120,63,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5275,120,56,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5275,120,56,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5276,120,57,5])},"rands":[{"$":"toplevel","depth":6,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5282,120,63,17])}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5098,117,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5105,117,21,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5097,117,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5097,117,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5098,117,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5062,116,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5069,116,21,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5061,116,13,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5061,116,13,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5062,116,14,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5015,115,24,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5027,115,36,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5014,115,23,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5014,115,23,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5015,115,24,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5028,115,37,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5039,115,48,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5027,115,36,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5027,115,36,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5028,115,37,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5548,127,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5548,127,9,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5559,127,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5571,128,9,118]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5585,128,23,103]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5571,128,9,118])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5571,128,9,118])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5571,128,9,118]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5572,128,10,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5699,130,9,305]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5707,130,17,296]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5699,130,9,305])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5699,130,9,305])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5699,130,9,305]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5700,130,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6014,135,9,90]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6029,136,10,74]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6014,135,9,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6014,135,9,90])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6014,135,9,90]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6015,135,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6124,138,7,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6133,138,16,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6144,138,27,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6123,138,6,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6123,138,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6124,138,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6133,138,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6145,138,28,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6152,138,35,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6144,138,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6144,138,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6145,138,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6153,138,36,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6164,138,47,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6152,138,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6152,138,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6153,138,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6165,138,48,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6178,138,61,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6164,138,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6164,138,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6165,138,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6191,139,7,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6200,139,16,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6211,139,27,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6190,139,6,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6190,139,6,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6191,139,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6200,139,16,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6212,139,28,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6219,139,35,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6211,139,27,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6211,139,27,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6212,139,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6220,139,36,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6231,139,47,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6219,139,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6219,139,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6220,139,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6232,139,48,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6245,139,61,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6231,139,47,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6231,139,47,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6232,139,48,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6259,141,7,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6268,141,16,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6276,141,24,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6258,141,6,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6258,141,6,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6259,141,7,8])},"rands":[{"$":"toplevel","depth":2,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6268,141,16,7])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6277,141,25,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6289,141,37,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6276,141,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6276,141,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6277,141,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6300,142,7,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6304,142,11,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6307,142,14,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6323,142,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6304,142,11,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6308,142,15,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6320,142,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6307,142,14,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6307,142,14,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6308,142,15,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6303,142,10,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6337,143,11,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6348,143,22,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6336,143,10,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6336,143,10,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6337,143,11,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2012/gameover.png"}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6421,144,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6433,144,23,77]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6534,145,23,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6580,145,69,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6607,146,23,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6420,144,10,236])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6420,144,10,236])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6421,144,11,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6434,144,24,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6444,144,34,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6457,144,47,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6460,144,50,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6480,144,70,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6483,144,73,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6492,144,82,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6500,144,90,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6506,144,96,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6433,144,23,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6433,144,23,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":164,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6434,144,24,9])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":18},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6461,144,51,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6467,144,57,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6460,144,50,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6460,144,50,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6461,144,51,5])},"rands":[{"$":"toplevel","depth":13,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6467,144,57,11])}]}}},{"$":"constant","value":false},{"$":"constant","value":types.symbol("default")},{"$":"constant","value":types.symbol("italic")},{"$":"constant","value":types.symbol("bold")},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6535,145,24,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6544,145,33,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6577,145,66,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6534,145,23,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6534,145,23,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":179,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6535,145,24,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6545,145,34,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6557,145,46,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6544,145,33,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6544,145,33,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6545,145,34,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6558,145,47,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6564,145,53,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6557,145,46,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6557,145,46,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6558,145,47,5])},"rands":[{"$":"toplevel","depth":8,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6564,145,53,10])}]}}}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":20},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6608,146,24,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6614,146,30,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6625,146,41,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6644,146,60,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6607,146,23,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6607,146,23,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":212,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6608,146,24,5])},"rands":[{"$":"toplevel","depth":7,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6614,146,30,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6626,146,42,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6632,146,48,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6625,146,41,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6625,146,41,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6626,146,42,5])},"rands":[{"$":"toplevel","depth":8,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6632,146,48,10])}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6030,136,11,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6037,136,18,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6055,136,36,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6073,136,54,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6089,136,70,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6029,136,10,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6029,136,10,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6030,136,11,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6038,136,19,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6052,136,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6037,136,18,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6037,136,18,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6038,136,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6056,136,37,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6070,136,51,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6055,136,36,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6055,136,36,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6056,136,37,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6074,136,55,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6086,136,67,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6073,136,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6073,136,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6074,136,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6090,136,71,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6095,136,76,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6089,136,70,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6089,136,70,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6090,136,71,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5708,130,18,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5712,130,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5714,130,24,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5730,130,40,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5712,130,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5715,130,25,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5727,130,37,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5714,130,24,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5714,130,24,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5715,130,25,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5711,130,21,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5755,131,22,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5766,131,33,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5829,132,33,134]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5754,131,21,210])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5754,131,21,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5755,131,22,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5767,131,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5778,131,45,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5766,131,33,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5766,131,33,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5767,131,34,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5779,131,46,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5792,131,59,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5778,131,45,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5778,131,45,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5779,131,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5830,132,34,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5842,132,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5844,132,48,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5868,132,72,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5939,133,47,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5947,133,55,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5829,132,33,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5829,132,33,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":180,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5830,132,34,11])},"rands":[{"$":"constant","value":7},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5845,132,49,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5847,132,51,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5851,132,55,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5844,132,48,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5844,132,48,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5845,132,49,1])},"rands":[{"$":"constant","value":types.rational(3, 2)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5852,132,56,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5864,132,68,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5851,132,55,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5851,132,55,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5852,132,56,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5869,132,73,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5871,132,75,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5875,132,79,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5868,132,72,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5868,132,72,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5869,132,73,1])},"rands":[{"$":"constant","value":types.rational(1, 4)},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5876,132,80,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5888,132,92,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5875,132,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5875,132,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5876,132,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":"solid"},{"$":"toplevel","depth":8,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5947,133,55,15])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5987,134,22,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6000,134,35,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5986,134,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5986,134,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5987,134,22,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5586,128,24,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5600,128,38,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5616,128,54,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5655,129,38,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5585,128,23,103])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5585,128,23,103])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":170,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5586,128,24,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5601,128,39,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5613,128,51,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5600,128,38,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5600,128,38,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5601,128,39,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":" score:"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5656,129,39,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5671,129,54,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5655,129,38,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5655,129,38,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":194,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5656,129,39,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5672,129,55,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5684,129,67,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5671,129,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5671,129,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",5672,129,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6835,151,9,11])}],"body":{"$":"lam","name":types.symbol("wrap-update"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6835,151,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6847,151,21,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6864,153,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6866,153,8,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6886,153,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6864,153,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6867,153,9,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6883,153,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6866,153,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6866,153,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6867,153,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6863,153,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6895,154,6,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6903,154,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6907,154,18,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6918,154,29,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6958,154,69,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6906,154,17,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6906,154,17,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6907,154,18,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6919,154,30,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6929,154,40,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6945,154,56,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6918,154,29,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6918,154,29,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6919,154,30,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6930,154,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6932,154,43,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6929,154,40,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6929,154,40,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6933,154,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6941,154,52,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6932,154,43,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6932,154,43,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6933,154,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6946,154,57,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6954,154,65,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6945,154,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6945,154,56,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6946,154,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6959,154,70,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6973,154,84,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6958,154,69,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6958,154,69,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6959,154,70,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6985,155,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6987,155,8,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7007,155,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6985,155,6,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6988,155,9,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7004,155,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6987,155,8,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6987,155,8,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6988,155,9,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6984,155,5,25])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7016,156,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7019,156,9,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0,1],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7023,156,13,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7034,156,24,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7062,156,52,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7022,156,12,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7022,156,12,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7023,156,13,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7035,156,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7037,156,27,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7049,156,39,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7034,156,24,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7034,156,24,27])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7038,156,28,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7046,156,36,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7037,156,27,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7037,156,27,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7038,156,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7050,156,40,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7058,156,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7049,156,39,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7049,156,39,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7050,156,40,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7063,156,53,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7077,156,67,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7062,156,52,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7062,156,52,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7063,156,53,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",6852,152,2,231])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7217,161,9,5])}],"body":{"$":"lam","name":types.symbol("reset"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7217,161,9,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7223,161,15,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7229,161,21,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7241,162,9,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7252,162,20,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7241,162,9,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7241,162,9,60])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7241,162,9,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7242,162,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7311,163,9,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7319,163,17,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7311,163,9,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7311,163,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7311,163,9,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7312,163,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7354,164,9,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7362,164,17,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7354,164,9,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7354,164,9,33])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7354,164,9,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7355,164,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7397,165,9,443]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7410,165,22,429]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7397,165,9,443])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7397,165,9,443])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7397,165,9,443]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7398,165,10,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7847,172,5,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7858,172,16,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7870,172,28,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7846,172,4,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7846,172,4,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7847,172,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7871,172,29,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7885,172,43,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7870,172,28,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7870,172,28,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7871,172,29,13])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7411,165,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7415,165,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7417,165,29,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7430,165,42,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7415,165,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7418,165,30,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7422,165,34,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7417,165,29,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7417,165,29,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7418,165,30,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7431,165,43,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7435,165,47,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7430,165,42,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7430,165,42,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7431,165,43,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7414,165,26,29])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7471,166,27,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7475,166,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7477,166,33,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7484,166,40,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7475,166,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7474,166,30,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7518,167,31,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7528,167,41,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7543,167,56,20]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7517,167,30,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7517,167,30,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7518,167,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7529,167,42,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7536,167,49,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7528,167,41,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7528,167,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7529,167,42,6])},"rands":[{"$":"toplevel","depth":4,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7536,167,49,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7544,167,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7546,167,59,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7556,167,69,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7543,167,56,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7543,167,56,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7544,167,57,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7547,167,60,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7546,167,59,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7546,167,59,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7547,167,60,7])},"rands":[]}}},{"$":"toplevel","depth":5,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7556,167,69,6])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7596,168,31,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7606,168,41,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7621,168,56,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7595,168,30,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7595,168,30,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7596,168,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7607,168,42,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7614,168,49,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7606,168,41,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7606,168,41,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7607,168,42,6])},"rands":[{"$":"toplevel","depth":4,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7614,168,49,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7622,168,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7624,168,59,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7634,168,69,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7621,168,56,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7621,168,56,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7622,168,57,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7625,168,60,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7624,168,59,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7624,168,59,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7625,168,60,7])},"rands":[]}}},{"$":"constant","value":-1}]}}}]}}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7667,169,27,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7671,169,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7673,169,33,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7680,169,40,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7671,169,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7670,169,30,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7715,170,31,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7725,170,41,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7745,170,61,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7714,170,30,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7714,170,30,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7715,170,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7726,170,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7728,170,44,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7738,170,54,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7725,170,41,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7725,170,41,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7726,170,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7729,170,45,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7728,170,44,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7728,170,44,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7729,170,45,7])},"rands":[]}}},{"$":"toplevel","depth":5,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7738,170,54,5])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7746,170,62,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7753,170,69,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7745,170,61,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7745,170,61,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7746,170,62,6])},"rands":[{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7753,170,69,6])}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7794,171,31,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7804,171,41,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7821,171,58,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7793,171,30,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7793,171,30,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7794,171,31,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7805,171,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7807,171,44,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7817,171,54,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7804,171,41,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7804,171,41,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7805,171,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7808,171,45,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7807,171,44,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7807,171,44,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7808,171,45,7])},"rands":[]}}},{"$":"constant","value":-1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7822,171,59,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7829,171,66,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7821,171,58,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7821,171,58,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7822,171,59,6])},"rands":[{"$":"toplevel","depth":4,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7829,171,66,6])}]}}}]}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7363,164,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7365,164,20,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7384,164,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7362,164,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7362,164,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7363,164,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7366,164,21,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7373,164,28,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7365,164,20,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7365,164,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":183,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7366,164,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7320,163,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7322,163,20,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7341,163,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7319,163,17,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7319,163,17,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7320,163,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7323,163,21,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7330,163,28,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7322,163,20,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7322,163,20,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":182,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7323,163,21,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7253,162,21,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7264,162,32,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7252,162,20,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7252,162,20,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7253,162,21,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7265,162,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7267,162,35,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7264,162,32,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7264,162,32,35])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7268,162,36,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7279,162,47,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7295,162,63,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7267,162,35,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7267,162,35,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7268,162,36,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7280,162,48,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7290,162,58,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7292,162,60,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7279,162,47,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7279,162,47,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7280,162,48,9])},"rands":[{"$":"constant","value":1},{"$":"constant","value":1}]}}},{"$":"constant","value":false}]}}}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7906,175,9,9])}],"body":{"$":"lam","name":types.symbol("make-game"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7906,175,9,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7916,175,19,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7922,175,25,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7934,175,37,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7965,176,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",7976,176,30,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8010,177,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8021,177,30,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8055,178,19,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8065,178,29,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8099,179,19,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8114,179,34,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8152,180,19,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8168,180,35,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8180,180,47,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8209,181,19,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8217,181,27,8])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8230,182,3,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8235,182,8,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8241,182,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8253,182,26,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8273,183,8,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8284,183,19,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8307,184,8,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8318,184,19,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8341,185,8,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8351,185,18,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8373,186,8,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8388,186,23,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8415,187,8,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8431,187,24,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8443,187,36,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8461,188,8,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8469,188,16,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8229,182,2,249])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8229,182,2,249])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8230,182,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":28,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8492,192,9,4])}],"body":{"$":"lam","name":types.symbol("play"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8492,192,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8497,192,14,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8504,192,21,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8510,192,27,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8523,192,40,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8503,192,20,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8503,192,20,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":242,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8504,192,21,5])},"rands":[{"$":"toplevel","depth":2,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8510,192,27,12])},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8842,199,9,12])}],"body":{"$":"lam","name":types.symbol("animate/proc"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8842,199,9,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8855,199,22,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8861,199,28,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8895,200,22,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8915,201,22,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8929,201,36,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8952,202,22,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8966,202,36,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",8989,203,22,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9003,203,36,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9040,204,22,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9054,204,36,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9095,205,22,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9111,205,38,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9123,205,50,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9154,206,22,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9164,206,32,10])],"flags":[],"num-params":16,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9190,208,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9199,208,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9211,208,26,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9189,208,4,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9189,208,4,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9190,208,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9199,208,14,11])},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9229,209,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9238,209,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9249,209,25,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9228,209,4,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9228,209,4,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9229,209,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9238,209,14,10])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9250,209,26,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9263,209,39,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9269,209,45,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9276,209,52,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9249,209,25,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9249,209,25,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9250,209,26,12])},"rands":[{"$":"toplevel","depth":5,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9263,209,39,5])},{"$":"toplevel","depth":5,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9269,209,45,6])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9294,210,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9303,210,14,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9317,210,28,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9293,210,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9293,210,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9294,210,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":149,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9303,210,14,13])},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9335,211,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9344,211,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9355,211,25,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9334,211,4,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9334,211,4,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9335,211,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":148,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9344,211,14,10])},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9370,212,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9379,212,14,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9397,212,32,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9369,212,4,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9369,212,4,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":172,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9370,212,5,8])},"rands":[{"$":"toplevel","depth":2,"pos":150,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9379,212,14,17])},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9425,213,11,68]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9433,213,19,59]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9425,213,11,68])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9425,213,11,68])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9425,213,11,68]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9426,213,12,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,4,5,6,7,8,10,11,12,16,17],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9589,216,11,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9604,216,26,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9589,216,11,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9589,216,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9589,216,11,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9590,216,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9645,217,11,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9660,217,26,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9645,217,11,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9645,217,11,44])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9645,217,11,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9646,217,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9701,218,11,52]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9720,218,30,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9701,218,11,52])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9701,218,11,52])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9701,218,11,52]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9702,218,12,17])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9765,219,11,348]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9793,220,12,319]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9765,219,11,348])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9765,219,11,348])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9765,219,11,348]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9766,219,12,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10125,225,11,182]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10136,225,22,170]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10125,225,11,182])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10125,225,11,182])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10125,225,11,182]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10126,225,12,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10319,228,11,130]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10329,228,21,119]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10319,228,11,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10319,228,11,130])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10319,228,11,130]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10320,228,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10532,232,11,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10541,232,20,54]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10532,232,11,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10532,232,11,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10532,232,11,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10533,232,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10703,235,11,232]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10716,235,24,218]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10703,235,11,232])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10703,235,11,232])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10703,235,11,232]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10704,235,12,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11034,241,11,133]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11043,241,20,123]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11034,241,11,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11034,241,11,133])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11034,241,11,133]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11035,241,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11179,243,11,133]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11188,243,20,123]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11179,243,11,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11179,243,11,133])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11179,243,11,133]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11180,243,12,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11324,245,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11331,245,18,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11324,245,11,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11324,245,11,11])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11324,245,11,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11325,245,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11451,248,11,72]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11458,248,18,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11451,248,11,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11451,248,11,72])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11451,248,11,72]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11452,248,12,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11593,251,11,826]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11603,251,21,815]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11593,251,11,826])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11593,251,11,826])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11593,251,11,826]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11594,251,12,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,4,5,6,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12432,264,11,377]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12438,264,17,370]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12432,264,11,377])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12432,264,11,377])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12432,264,11,377]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12433,264,12,4])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12821,271,11,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12826,271,16,33]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12821,271,11,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12821,271,11,39])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12821,271,11,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12822,271,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12928,274,11,2513]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12942,274,25,2498]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12928,274,11,2513])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12928,274,11,2513])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12928,274,11,2513]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12929,274,12,12])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15451,310,7,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15460,310,16,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15482,311,16,47]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15546,312,16,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15588,313,16,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15627,314,16,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15661,315,16,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15692,316,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15450,310,6,255])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15450,310,6,255])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":240,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15451,310,7,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15483,311,17,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15493,311,27,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15482,311,16,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15482,311,16,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":154,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15483,311,17,9])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15494,311,28,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15502,311,36,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[8],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15506,311,40,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15508,311,42,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15524,311,58,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15505,311,39,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15505,311,39,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15506,311,40,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15509,311,43,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15521,311,55,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15508,311,42,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15508,311,42,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15509,311,43,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":-1}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15547,312,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15555,312,25,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15568,312,38,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15546,312,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15546,312,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":191,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15547,312,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.rational(1, 10)}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15589,313,17,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15599,313,27,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15588,313,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15588,313,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":185,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15589,313,17,9])},"rands":[{"$":"toplevel","depth":8,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15599,313,27,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15628,314,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15635,314,24,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15627,314,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15627,314,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":195,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15628,314,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15662,315,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15670,315,25,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15661,315,16,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15661,315,16,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":192,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15662,315,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15693,316,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15700,316,24,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15692,316,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15692,316,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":193,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15693,316,17,6])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12943,274,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12946,274,29,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12984,275,34,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12992,275,42,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12984,275,34,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12984,275,34,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12984,275,34,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12985,275,35,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13044,276,34,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13048,276,38,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13044,276,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13044,276,34,17])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13044,276,34,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13045,276,35,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13096,277,34,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13103,277,41,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13096,277,34,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13096,277,34,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13096,277,34,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13097,277,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13154,278,34,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13161,278,41,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13154,278,34,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13154,278,34,23])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13154,278,34,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13155,278,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13313,280,34,57]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13325,280,46,44]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13313,280,34,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13313,280,34,57])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13313,280,34,57]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13314,280,35,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13405,281,34,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13415,281,44,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13405,281,34,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13405,281,34,40])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13405,281,34,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13406,281,35,8])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13703,285,34,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13712,285,43,54]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13703,285,34,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13703,285,34,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13703,285,34,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13704,285,35,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9,10,11,12,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13802,286,34,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13811,286,43,54]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13802,286,34,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13802,286,34,64])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13802,286,34,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13803,286,35,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9,10,11,13],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13901,287,34,79]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13914,287,47,65]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13901,287,34,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13901,287,34,79])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13901,287,34,79]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13902,287,35,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,5,6,7,8,9,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14123,290,34,206]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14130,290,41,198]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14123,290,34,206])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14123,290,34,206])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14123,290,34,206]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14124,290,35,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14529,296,33,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14532,296,36,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14548,296,52,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14529,296,33,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14533,296,37,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14545,296,49,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14532,296,36,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14532,296,36,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14533,296,37,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14548,296,52,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14528,296,32,31])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14596,297,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14598,297,35,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14614,297,51,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14596,297,33,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14599,297,36,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14611,297,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14598,297,35,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14598,297,35,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14599,297,36,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14595,297,32,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14650,298,33,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14661,298,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14669,298,52,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14681,298,64,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14689,298,72,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14696,298,79,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14744,299,44,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14750,299,50,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14756,299,56,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14649,298,32,120])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14649,298,32,120])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14650,298,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14757,299,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14759,299,59,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14765,299,65,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14756,299,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14756,299,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14757,299,57,1])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14804,300,33,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14812,300,41,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14819,300,48,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14820,300,49,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14834,300,63,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14819,300,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14819,300,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14820,300,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14803,300,32,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14871,301,33,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14882,301,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14890,301,52,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14902,301,64,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14910,301,72,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14917,301,79,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14965,302,44,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14994,302,73,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15000,302,79,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14870,301,32,134])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14870,301,32,134])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14871,301,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14966,302,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14968,302,47,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14974,302,53,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14965,302,44,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14965,302,44,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14966,302,45,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":151,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14974,302,53,18])}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15039,303,33,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15047,303,41,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15054,303,48,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15055,303,49,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15069,303,63,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15054,303,48,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15054,303,48,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15055,303,49,13])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15038,303,32,34])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15106,304,33,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15117,304,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15125,304,52,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15137,304,64,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15145,304,72,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15152,304,79,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15200,305,44,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15229,305,73,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15235,305,79,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15105,304,32,146])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15105,304,32,146])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15106,304,33,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15201,305,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15203,305,47,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15209,305,53,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15200,305,44,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15200,305,44,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15201,305,45,1])},"rands":[{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":10,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15209,305,53,18])}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15236,305,80,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15248,305,92,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15235,305,79,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15235,305,79,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15236,305,80,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15285,306,32,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15291,306,38,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15302,306,49,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15310,306,57,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15322,306,69,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15330,306,77,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15337,306,84,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15390,307,49,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15396,307,55,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15402,307,61,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15290,306,37,118])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15290,306,37,118])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",15291,306,38,10])},"rands":[{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14490,295,29,920])}]}}}}}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14131,290,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14133,290,44,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14193,291,44,134]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14130,290,41,198])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14130,290,41,198])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14131,290,42,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14134,290,45,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14146,290,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14133,290,44,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14133,290,44,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14134,290,45,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14194,291,45,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14198,291,49,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14204,291,55,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14241,291,92,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14198,291,49,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14205,291,56,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14207,291,58,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,10,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14211,291,62,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14219,291,70,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14221,291,72,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14210,291,61,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14210,291,61,29])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14222,291,73,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14236,291,87,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14221,291,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14221,291,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14222,291,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14242,291,93,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14254,291,105,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14241,291,92,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14241,291,92,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14242,291,93,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14197,291,48,60])}]}}},"then":{"$":"toplevel","depth":3,"pos":145,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",14306,292,48,18])},"else":{"$":"constant","value":0}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13915,287,48,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13927,287,60,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13950,287,83,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13961,287,94,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13914,287,47,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13914,287,47,65])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13928,287,61,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13933,287,66,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13927,287,60,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13927,287,60,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13928,287,61,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13934,287,67,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13946,287,79,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13933,287,66,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13933,287,66,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13934,287,67,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13812,286,44,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13824,286,56,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13842,286,74,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13851,286,83,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13811,286,43,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13811,286,43,54])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13825,286,57,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13839,286,71,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13824,286,56,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13824,286,56,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13825,286,57,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13713,285,44,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13725,285,56,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13743,285,74,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13752,285,83,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13712,285,43,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13712,285,43,54])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13726,285,57,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13740,285,71,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13725,285,56,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13725,285,56,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13726,285,57,13])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13416,281,45,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13421,281,50,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13428,281,57,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13415,281,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13415,281,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13416,281,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13429,281,58,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13441,281,70,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13428,281,57,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13428,281,57,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13429,281,58,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13326,280,47,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13333,280,54,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13351,280,72,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13325,280,46,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13325,280,46,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13326,280,47,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13334,280,55,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13348,280,69,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13333,280,54,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13333,280,54,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13334,280,55,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13352,280,73,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13366,280,87,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13351,280,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13351,280,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13352,280,73,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13162,278,42,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13174,278,54,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13161,278,41,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13161,278,41,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13162,278,42,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13104,277,42,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13116,277,54,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13103,277,41,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13103,277,41,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13104,277,42,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13049,276,39,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13058,276,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13048,276,38,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13048,276,38,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13049,276,39,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12993,275,43,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",13006,275,56,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12992,275,42,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12992,275,42,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12993,275,43,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12827,271,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12835,271,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12837,271,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12839,271,29,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[8],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12843,271,33,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12852,271,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12854,271,44,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12842,271,32,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12842,271,32,16])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12439,264,18,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12447,264,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12449,264,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12451,264,30,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12501,266,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12503,266,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12505,266,26,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12501,266,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":6,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12505,266,26,9])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12500,266,21,15])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12517,266,38,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12526,266,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12528,266,49,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12516,266,37,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12516,266,37,20])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12560,267,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12562,267,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12564,267,26,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12560,267,22,1])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":6,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12564,267,26,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12559,267,21,16])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12577,267,39,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12586,267,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12588,267,50,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12576,267,38,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12576,267,38,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12619,268,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12621,268,24,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12656,268,59,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12619,268,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12622,268,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12624,268,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12626,268,29,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12621,268,24,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12621,268,24,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12622,268,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":8,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12626,268,29,28])}]}}},{"$":"toplevel","depth":6,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12656,268,59,9])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12618,268,21,48])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12668,268,71,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12677,268,80,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12679,268,82,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12667,268,70,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12667,268,70,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12710,269,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12712,269,24,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12747,269,59,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12710,269,22,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12713,269,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12715,269,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12717,269,29,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12712,269,24,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12712,269,24,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12713,269,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":8,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12717,269,29,28])}]}}},{"$":"toplevel","depth":6,"pos":146,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12747,269,59,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12709,269,21,49])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12760,269,72,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12769,269,81,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12771,269,83,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12759,269,71,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12759,269,71,17])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12799,270,21,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12473,265,19,334])}]}}}}}}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11604,251,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11606,251,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11608,251,26,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2,3,7,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11669,253,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11674,253,32,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11683,253,41,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11687,253,45,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11674,253,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11673,253,31,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11669,253,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11693,253,51,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11696,253,54,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11712,253,70,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11693,253,51,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11697,253,55,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11709,253,67,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11696,253,54,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11696,253,54,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11697,253,55,11])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":10,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11712,253,70,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11692,253,50,31])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11668,253,26,56])}]}}},"then":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11759,254,27,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11762,254,30,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11778,254,46,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":250,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11759,254,27,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11763,254,31,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11775,254,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11762,254,30,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11762,254,30,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11763,254,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11778,254,46,10])}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11758,254,26,31])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11820,255,27,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11829,255,36,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11833,255,40,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11820,255,27,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"release"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11819,255,26,24])}]}}},"then":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11874,256,27,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11883,256,36,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11887,256,40,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11874,256,27,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"escape"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11873,256,26,23])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11898,256,51,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11915,256,68,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11917,256,70,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11897,256,50,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11897,256,50,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11898,256,51,16])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":-1}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11949,257,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11954,257,32,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11963,257,41,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11967,257,45,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":167,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11954,257,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":" "}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11953,257,31,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11949,257,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[9,11],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12004,258,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12086,259,36,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12090,259,40,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12086,259,36,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12091,259,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12093,259,43,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12118,259,68,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12090,259,40,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12090,259,40,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12091,259,41,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12094,259,44,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12113,259,63,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12093,259,43,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12093,259,43,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"constant","value":100}]}}},{"$":"constant","value":100}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12085,259,35,38])}]}}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])},"rands":[{"$":"constant","value":"or"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12004,258,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12008,258,36,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12010,258,38,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12047,258,75,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":15,"pos":247,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12008,258,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12011,258,39,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12027,258,55,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12010,258,38,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12010,258,38,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":16,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12011,258,39,15])},"rands":[{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12007,258,35,42])}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12003,258,31,121])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11948,257,26,177])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12153,260,27,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12170,260,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12172,260,46,151]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12152,260,26,172])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12152,260,26,172])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12153,260,27,16])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12173,260,47,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12178,260,52,76]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12307,261,52,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12172,260,46,151])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12172,260,46,151])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12173,260,47,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12179,260,53,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12190,260,64,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12240,260,114,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12178,260,52,76])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12178,260,52,76])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12179,260,53,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12191,260,65,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12201,260,75,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12220,260,94,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12190,260,64,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12190,260,64,49])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12191,260,65,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12202,260,76,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12208,260,82,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12201,260,75,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12201,260,75,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12202,260,76,5])},"rands":[{"$":"toplevel","depth":9,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12208,260,82,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12221,260,95,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12227,260,101,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12220,260,94,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12220,260,94,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":162,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12221,260,95,5])},"rands":[{"$":"toplevel","depth":9,"pos":147,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12227,260,101,10])}]}}}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12308,261,53,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12320,261,65,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12307,261,52,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12307,261,52,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12308,261,53,11])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12352,262,26,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12358,262,32,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12376,262,50,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12378,262,52,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12357,262,31,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12357,262,31,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12358,262,32,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12379,262,53,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12393,262,67,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12410,262,84,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12378,262,52,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12378,262,52,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12394,262,68,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12407,262,81,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12393,262,67,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12393,262,67,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",12394,262,68,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11636,252,23,781])}]}}}}}}}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11459,248,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11470,248,30,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11478,248,38,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11484,248,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11492,248,52,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11499,248,59,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11510,248,70,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11514,248,74,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11520,248,80,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11458,248,18,64])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11458,248,18,64])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11459,248,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":22,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":100},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}]}}}},"rands":[{"$":"constant","value":types.EMPTY}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11189,243,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11193,243,25,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11283,244,25,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11188,243,20,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11188,243,20,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11189,243,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11194,243,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11197,243,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11203,243,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11209,243,41,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11242,243,74,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11202,243,34,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11202,243,34,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11203,243,35,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11210,243,42,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11221,243,53,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11237,243,69,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11209,243,41,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11209,243,41,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11210,243,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11222,243,54,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11232,243,64,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11234,243,66,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11221,243,53,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11221,243,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11222,243,54,9])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11284,244,26,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11292,244,34,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11283,244,25,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11283,244,25,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11284,244,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11293,244,35,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11298,244,40,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11292,244,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11292,244,34,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11293,244,35,4])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11044,241,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11048,241,25,64]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11138,242,25,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11043,241,20,123])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11043,241,20,123])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11044,241,21,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11049,241,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11052,241,29,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11058,241,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11064,241,41,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11097,241,74,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11057,241,34,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11057,241,34,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11058,241,35,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11065,241,42,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11076,241,53,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11092,241,69,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11064,241,41,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11064,241,41,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11065,241,42,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11077,241,54,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11087,241,64,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11089,241,66,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11076,241,53,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11076,241,53,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11077,241,54,9])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11139,242,26,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11147,242,34,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11138,242,25,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11138,242,25,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11139,242,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11148,242,35,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11153,242,40,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11147,242,34,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11147,242,34,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",11148,242,35,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10717,235,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10720,235,28,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10726,235,34,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10734,235,42,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,13,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10767,236,25,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10771,236,29,126]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10927,238,29,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10766,236,24,167])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10766,236,24,167])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10767,236,25,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10772,236,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10775,236,33,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,3,4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10779,236,37,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10783,236,41,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10788,236,46,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10798,236,56,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10787,236,45,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10783,236,41,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10802,236,60,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10806,236,64,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10802,236,60,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10807,236,65,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10815,236,73,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10817,236,75,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10806,236,64,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10806,236,64,19])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10801,236,59,25])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10782,236,40,45])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10869,237,41,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10876,237,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10868,237,40,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10868,237,40,10])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10880,237,52,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10886,237,58,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10888,237,60,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10879,237,51,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10879,237,51,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10880,237,52,5])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10542,232,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10545,232,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10547,232,26,7])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,14],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10557,232,36,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10563,232,42,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10586,232,65,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10556,232,35,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10556,232,35,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":189,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10557,232,36,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10564,232,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10567,232,46,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10571,232,50,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10580,232,59,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10582,232,61,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10570,232,49,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10570,232,49,14])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10330,228,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10333,228,25,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10336,228,28,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10341,228,33,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10351,228,43,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10364,228,56,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10421,229,43,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10434,229,56,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10340,228,32,107])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10340,228,32,107])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10352,228,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10360,228,52,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10351,228,43,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10351,228,43,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10352,228,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10365,228,57,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10373,228,65,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10364,228,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10364,228,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10365,228,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10422,229,44,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10430,229,52,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10421,229,43,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10421,229,43,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10422,229,44,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10435,229,57,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10443,229,65,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10434,229,56,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10434,229,56,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10435,229,57,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10137,225,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10141,225,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10143,225,29,28]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10172,225,58,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10141,225,27,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10144,225,30,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10160,225,46,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10143,225,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10143,225,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10144,225,30,15])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10140,225,26,34])}]}}},"then":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10203,226,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10206,226,30,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10210,226,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10221,226,45,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10209,226,33,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10209,226,33,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10222,226,46,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10230,226,54,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10221,226,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10221,226,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10222,226,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10262,227,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10265,227,30,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10269,227,34,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10280,227,45,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10292,227,57,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10268,227,33,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10268,227,33,36])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10281,227,46,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10289,227,54,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10280,227,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10280,227,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10281,227,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10293,227,58,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10301,227,66,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10292,227,57,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10292,227,57,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10293,227,58,7])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9794,220,13,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9802,220,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9804,220,23,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9808,220,27,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9861,221,27,204]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10093,224,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9807,220,26,304])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9807,220,26,304])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9808,220,27,10])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9862,221,28,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9866,221,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9868,221,34,32]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9901,221,67,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":246,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9866,221,32,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9869,221,35,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9885,221,51,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9868,221,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9868,221,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":178,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9869,221,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9865,221,31,38])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9937,222,32,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9947,222,42,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9959,222,54,30]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9936,222,31,54])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9936,222,31,54])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9937,222,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9948,222,43,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9956,222,51,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9947,222,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9947,222,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9948,222,43,7])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9960,222,55,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9975,222,70,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9987,222,82,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9959,222,54,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9959,222,54,30])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9976,222,71,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9984,222,79,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9975,222,70,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9975,222,70,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9976,222,71,7])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10023,223,32,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10038,223,47,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10050,223,59,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10062,223,71,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10022,223,31,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10022,223,31,42])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10039,223,48,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10047,223,56,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10038,223,47,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10038,223,47,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10039,223,48,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10051,223,60,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10059,223,68,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10050,223,59,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10050,223,59,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10051,223,60,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10094,224,28,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10108,224,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10093,224,27,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10093,224,27,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",10094,224,28,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9721,218,31,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9733,218,43,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9720,218,30,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9720,218,30,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9721,218,31,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9661,217,27,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9673,217,39,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9660,217,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9660,217,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9661,217,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9605,216,27,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9617,216,39,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9604,216,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9604,216,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9605,216,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9434,213,20,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9445,213,31,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9482,213,68,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9433,213,19,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9433,213,19,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9434,213,20,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9446,213,32,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9456,213,42,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9468,213,54,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9445,213,31,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9445,213,31,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":206,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9446,213,32,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9457,213,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9459,213,45,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9465,213,51,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9456,213,42,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9456,213,42,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9457,213,43,1])},"rands":[{"$":"toplevel","depth":7,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9459,213,45,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9469,213,55,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9471,213,57,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9478,213,64,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9468,213,54,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9468,213,54,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9469,213,55,1])},"rands":[{"$":"toplevel","depth":7,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",9471,213,57,6])},{"$":"constant","value":2}]}}}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16466,350,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16466,350,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16471,350,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16489,352,5,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16500,352,16,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":181,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16489,352,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16488,352,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16522,353,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16530,353,13,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":196,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16522,353,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16521,353,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16550,354,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16558,354,13,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16550,354,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16549,354,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16578,355,5,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16585,355,12,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":216,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16578,355,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16577,355,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16604,356,5,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16613,356,14,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":238,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16604,356,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16603,356,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16634,357,5,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16640,357,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":184,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16634,357,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16633,357,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16662,358,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16670,358,13,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":165,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16662,358,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16661,358,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16690,359,5,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16696,359,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16690,359,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16689,359,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16714,360,5,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16720,360,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16714,360,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16713,360,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16738,361,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16746,361,13,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":168,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16738,361,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16737,361,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16768,362,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",16478,351,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17257,373,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17257,373,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17269,373,21,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17271,373,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17273,373,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17287,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17292,374,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17294,374,10,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17336,374,52,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17292,374,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17295,374,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17299,374,15,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17294,374,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17294,374,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17295,374,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17300,374,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17302,374,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17318,374,34,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17299,374,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17299,374,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17300,374,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17303,374,19,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17315,374,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17302,374,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17302,374,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17303,374,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17319,374,35,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17331,374,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17318,374,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17318,374,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17319,374,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17291,374,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17287,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17355,375,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17357,375,10,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17399,375,52,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17355,375,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17358,375,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17362,375,15,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17357,375,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17357,375,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17358,375,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17363,375,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17365,375,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17381,375,34,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17362,375,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17362,375,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17363,375,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17366,375,19,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17378,375,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17365,375,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17365,375,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17366,375,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17382,375,35,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17394,375,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17381,375,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17381,375,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17382,375,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17354,375,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17287,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17418,376,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17420,376,10,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17462,376,52,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17418,376,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17421,376,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17425,376,15,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17420,376,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17420,376,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17421,376,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17426,376,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17428,376,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17444,376,34,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17425,376,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17425,376,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17426,376,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17429,376,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17441,376,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17428,376,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17428,376,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17429,376,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17445,376,35,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17457,376,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17444,376,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17444,376,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17445,376,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17417,376,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17287,374,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17481,377,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17483,377,10,41]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17525,377,52,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17481,377,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17484,377,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17488,377,15,35]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17483,377,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17483,377,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":244,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17484,377,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17489,377,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17491,377,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17507,377,34,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17488,377,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17488,377,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17489,377,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17492,377,19,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17504,377,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17491,377,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17491,377,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17492,377,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17508,377,35,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17520,377,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17507,377,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17507,377,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17508,377,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17480,377,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17630,381,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17630,381,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17638,381,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17640,381,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17646,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17651,382,8,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17658,382,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17674,382,31,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17651,382,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17659,382,16,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17671,382,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17658,382,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17658,382,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17659,382,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17675,382,32,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17687,382,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17674,382,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17674,382,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":229,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17675,382,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17650,382,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17646,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17699,383,8,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17706,383,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17722,383,31,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17699,383,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17707,383,16,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17719,383,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17706,383,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17706,383,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17707,383,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17723,383,32,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17735,383,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17722,383,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17722,383,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":234,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17723,383,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17698,383,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17646,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17747,384,8,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17754,384,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17770,384,31,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17747,384,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17755,384,16,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17767,384,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17754,384,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17754,384,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17755,384,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17771,384,32,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17783,384,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17770,384,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17770,384,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":228,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17771,384,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17746,384,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17646,382,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17795,385,8,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17802,385,15,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17818,385,31,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":226,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17795,385,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17803,385,16,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17815,385,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17802,385,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17802,385,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17803,385,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17819,385,32,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17831,385,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17818,385,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17818,385,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":236,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17819,385,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",17794,385,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18383,398,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18383,398,9,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18394,398,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18410,400,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18418,400,13,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":169,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18410,400,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18409,400,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18426,401,5,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18438,401,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18425,401,4,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18425,401,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":200,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18426,401,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18446,402,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18399,399,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18471,406,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18471,406,9,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18487,406,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18489,406,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18491,406,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18493,406,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18499,407,3,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18501,407,5,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18509,407,13,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18498,407,2,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18498,407,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18499,407,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18502,407,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18504,407,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18506,407,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18501,407,5,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18501,407,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18502,407,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18523,409,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18523,409,9,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18546,409,32,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18553,409,39,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18557,409,43,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18563,409,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18573,410,2,345]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18582,410,11,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18616,411,11,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18652,412,13,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18573,410,2,345])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18573,410,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18573,410,2,345]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18580,410,9,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18614,411,9,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18648,412,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18709,413,5,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18721,414,5,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18766,415,5,39]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18811,416,5,49]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18866,417,5,50]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18708,413,4,209])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18708,413,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18709,413,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18722,414,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18726,414,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18728,414,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18730,414,14,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18726,414,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18725,414,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18734,414,18,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18739,414,23,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18733,414,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18733,414,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18734,414,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18740,414,24,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18744,414,28,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18752,414,36,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18739,414,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18739,414,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18745,414,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18747,414,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18749,414,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18744,414,28,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18744,414,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18745,414,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18767,415,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18771,415,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18773,415,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18775,415,14,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18771,415,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18770,415,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18779,415,18,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18784,415,23,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18778,415,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18778,415,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18779,415,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18785,415,24,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18789,415,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18791,415,30,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18784,415,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18784,415,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18792,415,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18794,415,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18796,415,35,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18791,415,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18791,415,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18792,415,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18812,416,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18816,416,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18818,416,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18820,416,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18816,416,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18821,416,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18823,416,17,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18829,416,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18820,416,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18820,416,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18821,416,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18815,416,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18834,416,28,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18839,416,33,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18833,416,27,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18833,416,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18834,416,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18840,416,34,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18844,416,38,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18852,416,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18839,416,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18839,416,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18845,416,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18847,416,41,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18849,416,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18844,416,38,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18844,416,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18845,416,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18867,417,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18871,417,10,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18873,417,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18875,417,14,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":249,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18871,417,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18876,417,15,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18878,417,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18885,417,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18875,417,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18875,417,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18876,417,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18870,417,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18890,417,29,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18895,417,34,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18889,417,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18889,417,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18890,417,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18896,417,35,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18900,417,39,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18902,417,41,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18895,417,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18895,417,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18903,417,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18905,417,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18907,417,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18902,417,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18902,417,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":245,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18903,417,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18583,410,12,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18593,410,22,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18597,410,26,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18582,410,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18582,410,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":176,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18583,410,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18617,411,12,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18623,411,18,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18616,411,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18616,411,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":223,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18617,411,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18624,411,19,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18626,411,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18630,411,25,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18623,411,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18623,411,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18624,411,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18653,412,14,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18661,412,22,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18663,412,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18667,412,28,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18683,412,44,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18685,412,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18687,412,48,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18693,412,54,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18666,412,27,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18666,412,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18667,412,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18930,419,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18930,419,9,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18953,419,32,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18960,419,39,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18966,419,45,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18973,419,52,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18981,419,60,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",18989,419,68,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19001,419,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19014,420,2,973]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19027,420,15,53]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19096,421,14,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19123,422,14,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19014,420,2,973])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19014,420,2,973])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19014,420,2,973]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19021,420,9,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19091,421,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19118,422,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19156,424,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19213,426,25,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19217,426,29,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19212,426,24,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19212,426,24,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19213,426,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19218,426,30,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19225,426,37,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19217,426,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19217,426,29,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":222,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19218,426,30,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19253,427,20,701]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19263,427,30,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19253,427,20,701])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19253,427,20,701])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19253,427,20,701]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19260,427,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19331,429,25,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19336,429,30,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19342,429,36,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19330,429,24,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19330,429,24,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19331,429,25,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19343,429,37,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19347,429,41,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19342,429,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19342,429,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":235,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19343,429,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19386,430,31,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19390,430,35,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19385,430,30,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19385,430,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19386,430,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19391,430,36,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19400,430,45,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19405,430,50,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19408,430,53,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19390,430,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19390,430,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":220,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19391,430,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19475,432,29,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19485,432,39,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19490,432,44,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19493,432,47,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19474,432,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19474,432,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":218,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19475,432,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19526,433,29,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19531,433,34,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19536,433,39,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19525,433,28,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19525,433,28,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19526,433,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19537,433,40,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19542,433,45,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19545,433,48,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19536,433,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19536,433,39,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":230,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19537,433,40,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19581,434,29,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19586,434,34,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19627,435,34,291]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19580,434,28,339])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19580,434,28,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19581,434,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19628,435,35,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19635,435,42,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19683,436,42,234]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19627,435,34,291])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19627,435,34,291])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19628,435,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19684,436,43,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19691,436,50,127]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19869,438,50,47]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19683,436,42,234])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19683,436,42,234])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":224,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19684,436,43,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19692,436,51,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19700,436,59,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6,8,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19759,437,53,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19771,437,65,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19795,437,89,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19807,437,101,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19758,437,52,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19758,437,52,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19759,437,53,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19772,437,66,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19783,437,77,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19790,437,84,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19771,437,65,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19771,437,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19772,437,66,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19870,438,51,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19893,438,74,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19900,438,81,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19903,438,84,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19909,438,90,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19869,438,50,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19869,438,50,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19870,438,51,22])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19379,430,24,542]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19379,430,24,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19379,430,24,542])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19379,430,24,542])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19947,439,25,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19946,439,24,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19946,439,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19264,427,31,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19268,427,35,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19263,427,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19263,427,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19264,427,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19206,426,18,749]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19206,426,18,749])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19206,426,18,749])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19206,426,18,749])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19968,440,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19967,440,8,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19967,440,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19028,420,16,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19033,420,21,46]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19027,420,15,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19027,420,15,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19028,420,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19034,420,22,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19050,420,38,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19058,420,46,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19066,420,54,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19072,420,60,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19033,420,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19033,420,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19034,420,22,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19097,421,15,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19096,421,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19096,421,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":205,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19097,421,15,9])},"rands":[]}}},{"$":"constant","value":types.EMPTY}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19999,443,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",19999,443,9,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20016,443,26,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20020,443,30,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20028,443,38,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20036,443,46,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20049,443,59,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20067,443,77,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20077,443,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20097,444,9,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20100,444,12,38]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20097,444,9,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20097,444,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20097,444,9,42]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20098,444,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20149,445,9,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20156,445,16,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20149,445,9,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20149,445,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20149,445,9,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20150,445,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20184,446,9,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20192,446,17,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20184,446,9,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20184,446,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20184,446,9,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20185,446,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20221,447,9,142]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20224,447,12,138]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20221,447,9,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20221,447,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20221,447,9,142]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20222,447,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20373,450,9,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20376,450,12,30]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20373,450,9,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20373,450,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20373,450,9,34]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20374,450,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20433,452,13,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20437,452,17,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20432,452,12,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20432,452,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":198,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20433,452,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20438,452,18,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20446,452,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20448,452,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20437,452,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20437,452,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20438,452,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20461,453,9,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20470,453,18,36]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20525,454,18,67]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20460,453,8,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20460,453,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":221,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20461,453,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20471,453,19,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20479,453,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20485,453,33,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20497,453,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20499,453,47,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20503,453,51,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20484,453,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20484,453,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":160,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20485,453,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20526,454,19,22]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20549,454,42,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20551,454,44,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20557,454,50,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20564,454,57,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20572,454,65,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20580,454,73,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20582,454,75,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20525,454,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20525,454,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20526,454,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20426,452,6,168]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20426,452,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20426,452,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":157,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20426,452,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20602,455,7,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20621,455,26,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20638,455,43,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20644,455,49,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20601,455,6,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20601,455,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":233,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20602,455,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20622,455,27,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20635,455,40,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20621,455,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20621,455,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":158,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20622,455,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20377,450,13,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20388,450,24,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20376,450,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20376,450,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20377,450,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20225,447,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20228,447,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20259,448,17,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20270,448,28,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20258,448,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20258,448,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20259,448,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20301,449,17,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20312,449,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20314,449,30,46]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20300,449,16,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20300,449,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":159,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20301,449,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20315,449,31,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20331,449,47,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20339,449,55,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20347,449,63,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20353,449,69,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20314,449,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20314,449,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20315,449,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20193,446,18,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20206,446,31,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20192,446,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20192,446,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20193,446,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20157,445,17,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20169,445,29,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20156,445,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20156,445,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20157,445,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20101,444,13,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20114,444,26,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20100,444,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20100,444,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":208,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20101,444,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20115,444,27,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20133,444,45,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20114,444,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20114,444,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":219,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20115,444,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20665,457,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20665,457,9,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20689,457,33,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20693,457,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20707,458,3,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20724,458,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20728,458,24,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20730,458,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20732,458,28,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20735,458,31,20]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20756,458,52,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20766,458,62,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20706,458,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20706,458,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20707,458,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20736,458,32,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20747,458,43,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20749,458,45,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20751,458,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20753,458,49,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20735,458,31,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20735,458,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":207,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20736,458,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20779,459,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20779,459,9,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20804,459,34,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20808,459,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20821,460,2,442]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20833,460,14,20]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20876,461,21,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20897,462,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20913,463,13,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20951,464,13,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20821,460,2,442])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20821,460,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20821,460,2,442]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20828,460,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20864,461,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20889,462,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20909,463,9,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20947,464,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20983,465,5,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21006,466,5,207]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21219,471,5,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21223,471,9,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21227,471,13,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21239,471,25,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21244,471,30,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21254,471,40,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20982,465,4,280])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20982,465,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20983,465,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21007,466,6,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21030,467,6,135]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21172,470,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21174,470,8,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21178,470,12,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21190,470,24,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21195,470,29,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21205,470,39,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21006,466,5,207])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21006,466,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21007,466,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21031,467,7,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21055,468,7,61]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21124,469,7,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21128,469,11,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21130,469,13,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21142,469,25,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21147,469,30,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21157,469,40,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21030,467,6,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21030,467,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21031,467,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21056,468,8,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21073,468,25,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21077,468,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21079,468,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21081,468,33,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21093,468,45,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21098,468,50,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21108,468,60,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21055,468,7,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21055,468,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21056,468,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20834,460,15,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20845,460,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20847,460,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20849,460,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20851,460,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20833,460,14,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20833,460,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":207,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20834,460,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20914,463,14,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20916,463,16,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20934,463,34,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20913,463,13,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20913,463,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20914,463,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20917,463,17,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20929,463,29,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20916,463,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20916,463,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20917,463,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20952,464,14,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20954,464,16,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20973,464,35,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20951,464,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20951,464,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20952,464,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20955,464,17,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20968,464,30,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20954,464,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20954,464,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",20955,464,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21432,476,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21432,476,9,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21446,476,23,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21450,476,27,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21463,476,40,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21481,476,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21494,477,2,299]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21505,477,13,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21545,478,13,30]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21494,477,2,299])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21494,477,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21494,477,2,299]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21501,477,9,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21541,478,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21583,479,5,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21607,480,5,137]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21750,485,5,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21773,486,5,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21582,479,4,210])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21582,479,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":233,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21583,479,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21608,480,6,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21612,480,10,97]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21720,484,10,23]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21607,480,5,137])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21607,480,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":201,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21608,480,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21613,480,11,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21621,480,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21637,481,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21641,481,17,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21653,481,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21655,481,31,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21659,481,35,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21641,481,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21640,481,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21721,484,11,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21739,484,29,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21720,484,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21720,484,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":219,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21721,484,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21751,485,6,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21763,485,18,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21750,485,5,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21750,485,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21751,485,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21774,486,6,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21787,486,19,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21773,486,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21773,486,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21774,486,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21506,477,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21517,477,25,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21505,477,13,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21505,477,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21506,477,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21546,478,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21557,478,25,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21545,478,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21545,478,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21546,478,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21916,489,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21916,489,9,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21929,489,22,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21933,489,26,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21946,489,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21960,490,3,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21974,490,17,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21978,490,21,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21991,490,34,20]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22012,490,55,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21959,490,2,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21959,490,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21960,490,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21992,490,35,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22003,490,46,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22005,490,48,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22007,490,50,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22009,490,52,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21991,490,34,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21991,490,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":207,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",21992,490,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22159,494,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22159,494,9,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22171,494,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22179,495,3,24]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22204,495,28,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22221,495,45,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22178,495,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22178,495,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22179,495,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22205,495,29,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22216,495,40,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22204,495,28,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22204,495,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":227,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22205,495,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22278,498,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22278,498,9,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22291,498,22,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22295,498,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22304,499,3,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22315,499,14,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22319,499,18,27]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22347,499,46,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22303,499,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22303,499,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":1,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22304,499,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22320,499,19,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22334,499,33,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22339,499,38,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22319,499,18,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22319,499,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":170,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22320,499,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22348,499,47,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22360,499,59,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22347,499,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22347,499,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22348,499,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22461,506,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22461,506,9,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22477,506,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22483,507,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22486,507,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22617,511,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22617,511,9,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22632,511,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22638,512,3,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22652,512,17,19]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22637,512,2,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22637,512,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22638,512,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22653,512,18,15]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22669,512,34,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22652,512,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22652,512,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22653,512,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22762,518,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22762,518,9,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22776,518,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22782,519,3,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22787,519,8,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22789,519,10,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22792,519,13,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22781,519,2,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22781,519,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":155,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22782,519,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22887,523,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22887,523,9,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22901,523,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22907,524,3,13]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22921,524,17,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22906,524,2,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22906,524,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22907,524,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22922,524,18,14]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22937,524,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22921,524,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22921,524,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":194,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",22922,524,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23108,530,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23108,530,9,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23119,530,20,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23130,530,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23132,530,33,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23134,530,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23149,531,3,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23160,531,14,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23171,531,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23173,531,27,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23181,531,35,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23148,531,2,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23148,531,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":186,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23149,531,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23174,531,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23176,531,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23178,531,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23173,531,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23173,531,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23174,531,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23361,536,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23361,536,9,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23371,536,19,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23382,536,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23384,536,32,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23386,536,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23401,537,3,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23413,537,15,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23424,537,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23426,537,28,31]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23458,537,60,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23400,537,2,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23400,537,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":153,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23401,537,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23427,537,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23429,537,31,25]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23455,537,57,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23426,537,28,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23426,537,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":251,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23427,537,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23430,537,32,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23443,537,45,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23429,537,31,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23429,537,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23430,537,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23545,540,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23545,540,9,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23548,540,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23552,540,16,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23554,540,18,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23556,540,20,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23551,540,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23551,540,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23552,540,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23778,545,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23778,545,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23783,545,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23787,545,18,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23791,545,22,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23786,545,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23786,545,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":173,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23787,545,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23792,545,23,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23794,545,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23796,545,27,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23791,545,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23791,545,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23792,545,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23797,545,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23799,545,30,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23802,545,33,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23796,545,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23796,545,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23797,545,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",23799,545,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24030,550,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24030,550,9,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24037,550,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24041,550,20,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24045,550,24,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24040,550,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24040,550,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":231,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24041,550,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24046,550,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24048,550,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24050,550,29,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24045,550,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24045,550,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24046,550,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24051,550,30,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24053,550,32,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24056,550,35,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24050,550,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24050,550,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24051,550,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24053,550,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24282,555,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24282,555,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24290,555,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24294,555,21,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24298,555,25,16]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24293,555,20,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24293,555,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":166,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24294,555,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24299,555,26,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24301,555,28,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24303,555,30,10]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24298,555,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24298,555,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":252,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24299,555,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24304,555,31,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24306,555,33,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24309,555,36,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24303,555,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24303,555,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":248,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24304,555,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":188,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24306,555,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24392,559,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24392,559,9,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24397,559,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24405,560,3,8]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24414,560,12,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24418,560,16,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24404,560,2,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24404,560,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":209,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24405,560,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24419,560,17,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24426,560,24,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24418,560,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24418,560,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":175,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24419,560,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24427,560,25,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24434,560,32,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24426,560,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24426,560,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":215,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24427,560,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24549,564,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24549,564,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24557,564,17,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24559,564,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24566,565,3,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24576,566,3,29]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24609,567,3,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24565,565,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24565,565,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":243,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24566,565,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24577,566,4,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24585,566,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24591,566,18,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24598,566,25,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24602,566,29,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24590,566,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24590,566,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":202,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24591,566,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24623,569,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24623,569,9,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24627,569,13,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24629,569,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24635,570,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24639,570,7,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24645,570,13,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":204,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24639,570,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24638,570,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24649,570,17,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24657,570,25,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24659,570,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24648,570,16,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24648,570,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24649,570,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24663,570,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24667,570,35,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24671,570,39,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24684,570,52,2]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":225,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24667,570,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24672,570,40,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24679,570,47,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24681,570,49,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24671,570,39,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24671,570,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":202,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24672,570,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24666,570,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24707,572,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24707,572,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24715,572,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24723,573,3,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24731,573,11,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24735,573,15,63]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24722,573,2,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24722,573,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":190,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24723,573,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24736,573,16,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24746,573,26,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24764,573,44,18]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24783,573,63,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24791,573,71,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24735,573,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24735,573,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":177,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24736,573,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24747,573,27,11]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24759,573,39,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24746,573,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24746,573,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":217,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24747,573,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24765,573,45,12]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24778,573,58,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24764,573,44,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24764,573,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":213,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24765,573,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24811,575,9,7])}],"body":{"$":"lam","name":types.symbol("flatten"),"locs":[types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24811,575,9,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24819,575,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24836,577,6,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24842,577,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":187,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24836,577,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24835,577,5,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24851,578,6,6]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24858,578,13,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24889,579,13,17]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24850,578,5,57])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24850,578,5,57])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":241,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24851,578,6,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24859,578,14,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24867,578,22,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24858,578,13,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24858,578,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24859,578,14,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24868,578,23,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24872,578,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24867,578,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24867,578,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":237,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24868,578,23,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24890,579,14,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24898,579,22,7]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24889,579,13,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24889,579,13,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24890,579,14,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24899,579,23,3]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24903,579,27,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24898,579,22,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24898,579,22,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":235,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24899,579,23,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24915,580,6,5]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24921,580,12,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":197,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24915,580,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24914,580,5,9])}]}}},"then":{"$":"constant","value":types.EMPTY},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":156,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},{"$":"toplevel","depth":4,"pos":161,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24939,582,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24950,583,6,4]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24955,583,11,1]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24949,583,5,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24949,583,5,8])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":210,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24950,583,6,4])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135]),types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":163,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/bootstrap-tilt-teachpack",24824,576,2,135])}]}}}}}}}}]}}, 'provides': ["cosine","sine","subset?","tangent","type","sq","string->image","make-game","pick","play","put-image","number->image","overlay-at","in?","boolean->image","clipart/url","color->alpha","boolean->string","*player-y*","*score*","*player-x*"]}; diff --git a/servlet-htdocs/collects/bootstrap2012/cage-teachpack.js b/servlet-htdocs/collects/bootstrap2012/cage-teachpack.js index 3c12443..27c1a8d 100644 --- a/servlet-htdocs/collects/bootstrap2012/cage-teachpack.js +++ b/servlet-htdocs/collects/bootstrap2012/cage-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2012/cage-teachpack"] = { 'name': "bootstrap2012/cage-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"set!"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"onscreen?*"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"draw-butterfly"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-x"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"world-y"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"butterfly"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"boolean->image"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",307,14,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",327,15,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",348,17,8,9])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",359,17,19,10]),types.vector(["bootstrap2012/cage-teachpack",370,17,30,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",358,17,18,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",359,17,19,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2012/butterfly.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",525,21,15,5])},{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("x")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("y")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",606,25,9,4])}],"body":{"$":"lam","name":types.symbol("move"),"locs":[types.vector(["bootstrap2012/cage-teachpack",606,25,9,4]),types.vector(["bootstrap2012/cage-teachpack",611,25,14,1]),types.vector(["bootstrap2012/cage-teachpack",613,25,16,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",632,27,6,3]),types.vector(["bootstrap2012/cage-teachpack",636,27,10,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",632,27,6,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",637,27,11,7]),types.vector(["bootstrap2012/cage-teachpack",645,27,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",636,27,10,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",637,27,11,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",660,28,6,8]),types.vector(["bootstrap2012/cage-teachpack",669,28,15,3]),types.vector(["bootstrap2012/cage-teachpack",673,28,19,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",660,28,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",688,29,6,10]),types.vector(["bootstrap2012/cage-teachpack",699,29,17,18]),types.vector(["bootstrap2012/cage-teachpack",718,29,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",687,29,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",688,29,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",700,29,18,1]),types.vector(["bootstrap2012/cage-teachpack",702,29,20,11]),types.vector(["bootstrap2012/cage-teachpack",714,29,32,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",699,29,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",700,29,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",703,29,21,7]),types.vector(["bootstrap2012/cage-teachpack",711,29,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",702,29,20,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",703,29,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",719,29,37,7]),types.vector(["bootstrap2012/cage-teachpack",727,29,45,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",718,29,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",719,29,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",738,30,6,8]),types.vector(["bootstrap2012/cage-teachpack",747,30,15,3]),types.vector(["bootstrap2012/cage-teachpack",751,30,19,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",738,30,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",767,31,6,10]),types.vector(["bootstrap2012/cage-teachpack",778,31,17,18]),types.vector(["bootstrap2012/cage-teachpack",797,31,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",766,31,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",767,31,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",779,31,18,1]),types.vector(["bootstrap2012/cage-teachpack",781,31,20,11]),types.vector(["bootstrap2012/cage-teachpack",793,31,32,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",778,31,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",779,31,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",782,31,21,7]),types.vector(["bootstrap2012/cage-teachpack",790,31,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",781,31,20,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",782,31,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",798,31,37,7]),types.vector(["bootstrap2012/cage-teachpack",806,31,45,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",797,31,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",798,31,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",817,32,6,8]),types.vector(["bootstrap2012/cage-teachpack",826,32,15,3]),types.vector(["bootstrap2012/cage-teachpack",830,32,19,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",817,32,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",845,33,6,10]),types.vector(["bootstrap2012/cage-teachpack",856,33,17,11]),types.vector(["bootstrap2012/cage-teachpack",868,33,29,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",844,33,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",845,33,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",857,33,18,7]),types.vector(["bootstrap2012/cage-teachpack",865,33,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",856,33,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",857,33,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",869,33,30,1]),types.vector(["bootstrap2012/cage-teachpack",871,33,32,11]),types.vector(["bootstrap2012/cage-teachpack",883,33,44,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",868,33,29,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",869,33,30,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",872,33,33,7]),types.vector(["bootstrap2012/cage-teachpack",880,33,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",871,33,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",872,33,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",895,34,6,8]),types.vector(["bootstrap2012/cage-teachpack",904,34,15,3]),types.vector(["bootstrap2012/cage-teachpack",908,34,19,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",895,34,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",921,35,6,10]),types.vector(["bootstrap2012/cage-teachpack",932,35,17,11]),types.vector(["bootstrap2012/cage-teachpack",944,35,29,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",920,35,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",921,35,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",933,35,18,7]),types.vector(["bootstrap2012/cage-teachpack",941,35,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",932,35,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",933,35,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",945,35,30,1]),types.vector(["bootstrap2012/cage-teachpack",947,35,32,11]),types.vector(["bootstrap2012/cage-teachpack",959,35,44,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",944,35,29,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",945,35,30,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",948,35,33,7]),types.vector(["bootstrap2012/cage-teachpack",956,35,41,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",947,35,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",948,35,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",620,26,2,358]),types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])}]}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1148,42,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2012/cage-teachpack",1148,42,9,10]),types.vector(["bootstrap2012/cage-teachpack",1159,42,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1171,43,9,200]),types.vector(["bootstrap2012/cage-teachpack",1198,44,10,172])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1171,43,9,200])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1171,43,9,200]),types.vector(["bootstrap2012/cage-teachpack",1172,43,10,14])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1381,49,9,391]),types.vector(["bootstrap2012/cage-teachpack",1403,50,10,368])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1381,49,9,391])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1381,49,9,391]),types.vector(["bootstrap2012/cage-teachpack",1382,49,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1779,61,5,14]),types.vector(["bootstrap2012/cage-teachpack",1794,61,20,1]),types.vector(["bootstrap2012/cage-teachpack",1817,62,20,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1778,61,4,80])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1818,62,21,9]),types.vector(["bootstrap2012/cage-teachpack",1828,62,31,1]),types.vector(["bootstrap2012/cage-teachpack",1830,62,33,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1817,62,20,40])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1831,62,34,11]),types.vector(["bootstrap2012/cage-teachpack",1843,62,46,5]),types.vector(["bootstrap2012/cage-teachpack",1849,62,52,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1830,62,33,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1831,62,34,11])},"rands":[{"$":"toplevel","depth":6,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1843,62,46,5])},{"$":"toplevel","depth":6,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1849,62,52,6])}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1404,50,11,6]),types.vector(["bootstrap2012/cage-teachpack",1412,50,19,1]),types.vector(["bootstrap2012/cage-teachpack",1414,50,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1434,51,13,11]),types.vector(["bootstrap2012/cage-teachpack",1459,52,13,244]),types.vector(["bootstrap2012/cage-teachpack",1710,58,13,32]),types.vector(["bootstrap2012/cage-teachpack",1749,59,13,1]),types.vector(["bootstrap2012/cage-teachpack",1764,60,13,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1433,51,12,337])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1434,51,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1460,52,14,4]),types.vector(["bootstrap2012/cage-teachpack",1480,53,14,198]),types.vector(["bootstrap2012/cage-teachpack",1693,57,14,2]),types.vector(["bootstrap2012/cage-teachpack",1696,57,17,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1459,52,13,244])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1460,52,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1481,53,15,13]),types.vector(["bootstrap2012/cage-teachpack",1495,53,29,16]),types.vector(["bootstrap2012/cage-teachpack",1542,54,29,28]),types.vector(["bootstrap2012/cage-teachpack",1600,55,29,19]),types.vector(["bootstrap2012/cage-teachpack",1649,56,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1480,53,14,198])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1481,53,15,13])},"rands":[{"$":"constant","value":"x-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1543,54,30,14]),types.vector(["bootstrap2012/cage-teachpack",1558,54,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1542,54,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1543,54,30,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1559,54,46,7]),types.vector(["bootstrap2012/cage-teachpack",1567,54,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1558,54,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1559,54,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":" y-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1650,56,30,14]),types.vector(["bootstrap2012/cage-teachpack",1665,56,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1649,56,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1650,56,30,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1666,56,46,7]),types.vector(["bootstrap2012/cage-teachpack",1674,56,54,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1665,56,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1666,56,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1711,58,14,8]),types.vector(["bootstrap2012/cage-teachpack",1720,58,23,19]),types.vector(["bootstrap2012/cage-teachpack",1740,58,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1710,58,13,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1711,58,14,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1721,58,24,11]),types.vector(["bootstrap2012/cage-teachpack",1733,58,36,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1720,58,23,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1721,58,24,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1199,44,11,6]),types.vector(["bootstrap2012/cage-teachpack",1207,44,19,1]),types.vector(["bootstrap2012/cage-teachpack",1209,44,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1229,45,13,11]),types.vector(["bootstrap2012/cage-teachpack",1241,45,25,9]),types.vector(["bootstrap2012/cage-teachpack",1277,46,25,11]),types.vector(["bootstrap2012/cage-teachpack",1315,47,25,22]),types.vector(["bootstrap2012/cage-teachpack",1363,48,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1228,45,12,141])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1229,45,13,11])},"rands":[{"$":"toplevel","depth":4,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1241,45,25,9])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1278,46,26,7]),types.vector(["bootstrap2012/cage-teachpack",1286,46,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1277,46,25,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1278,46,26,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1316,47,26,1]),types.vector(["bootstrap2012/cage-teachpack",1318,47,28,6]),types.vector(["bootstrap2012/cage-teachpack",1325,47,35,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1315,47,25,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1316,47,26,1])},"rands":[{"$":"toplevel","depth":6,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1318,47,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1326,47,36,7]),types.vector(["bootstrap2012/cage-teachpack",1334,47,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1325,47,35,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1326,47,36,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1872,65,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap2012/cage-teachpack",1872,65,9,5]),types.vector(["bootstrap2012/cage-teachpack",1878,65,15,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1898,66,9,139]),types.vector(["bootstrap2012/cage-teachpack",1910,66,21,126])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1898,66,9,139])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1898,66,9,139]),types.vector(["bootstrap2012/cage-teachpack",1899,66,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2047,69,9,199]),types.vector(["bootstrap2012/cage-teachpack",2055,69,17,190])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2047,69,9,199])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",2047,69,9,199]),types.vector(["bootstrap2012/cage-teachpack",2048,69,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2253,74,5,8]),types.vector(["bootstrap2012/cage-teachpack",2262,74,14,37]),types.vector(["bootstrap2012/cage-teachpack",2314,75,14,22]),types.vector(["bootstrap2012/cage-teachpack",2351,76,14,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2252,74,4,115])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2253,74,5,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2263,74,15,10]),types.vector(["bootstrap2012/cage-teachpack",2274,74,26,11]),types.vector(["bootstrap2012/cage-teachpack",2286,74,38,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2262,74,14,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2263,74,15,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2275,74,27,1]),types.vector(["bootstrap2012/cage-teachpack",2277,74,29,5]),types.vector(["bootstrap2012/cage-teachpack",2283,74,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2274,74,26,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2275,74,27,1])},"rands":[{"$":"toplevel","depth":7,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2277,74,29,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2287,74,39,1]),types.vector(["bootstrap2012/cage-teachpack",2289,74,41,6]),types.vector(["bootstrap2012/cage-teachpack",2296,74,48,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2286,74,38,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2287,74,39,1])},"rands":[{"$":"toplevel","depth":7,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2289,74,41,6])},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2315,75,15,9]),types.vector(["bootstrap2012/cage-teachpack",2325,75,25,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2314,75,14,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2315,75,15,9])},"rands":[{"$":"toplevel","depth":4,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2325,75,25,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2352,76,15,6]),types.vector(["bootstrap2012/cage-teachpack",2359,76,22,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2351,76,14,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2352,76,15,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",2056,69,18,6]),types.vector(["bootstrap2012/cage-teachpack",2064,69,26,1]),types.vector(["bootstrap2012/cage-teachpack",2066,69,28,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2090,70,20,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2094,70,24,10]),types.vector(["bootstrap2012/cage-teachpack",2105,70,35,20]),types.vector(["bootstrap2012/cage-teachpack",2162,71,35,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2106,70,36,7]),types.vector(["bootstrap2012/cage-teachpack",2114,70,44,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2105,70,35,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2106,70,36,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2115,70,45,4]),types.vector(["bootstrap2012/cage-teachpack",2120,70,50,1]),types.vector(["bootstrap2012/cage-teachpack",2122,70,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2114,70,44,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2115,70,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2163,71,36,7]),types.vector(["bootstrap2012/cage-teachpack",2171,71,44,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2162,71,35,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2163,71,36,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2172,71,45,4]),types.vector(["bootstrap2012/cage-teachpack",2177,71,50,1]),types.vector(["bootstrap2012/cage-teachpack",2179,71,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2171,71,44,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2172,71,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2209,72,24,4]),types.vector(["bootstrap2012/cage-teachpack",2214,72,29,1]),types.vector(["bootstrap2012/cage-teachpack",2216,72,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2208,72,23,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2209,72,24,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1911,66,22,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1915,66,26,1]),types.vector(["bootstrap2012/cage-teachpack",1917,66,28,27]),types.vector(["bootstrap2012/cage-teachpack",1945,66,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1915,66,26,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1918,66,29,15]),types.vector(["bootstrap2012/cage-teachpack",1934,66,45,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1917,66,28,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1918,66,29,15])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",2008,68,25,6]),types.vector(["bootstrap2012/cage-teachpack",2016,68,33,1]),types.vector(["bootstrap2012/cage-teachpack",2018,68,35,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2022,68,39,9]),types.vector(["bootstrap2012/cage-teachpack",2032,68,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2021,68,38,13])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3129,112,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/cage-teachpack",3129,112,9,4]),types.vector(["bootstrap2012/cage-teachpack",3134,112,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3152,114,5,10]),types.vector(["bootstrap2012/cage-teachpack",3163,114,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3152,114,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3185,115,5,7]),types.vector(["bootstrap2012/cage-teachpack",3193,115,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3185,115,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3213,116,5,7]),types.vector(["bootstrap2012/cage-teachpack",3221,116,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3213,116,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3241,117,5,6]),types.vector(["bootstrap2012/cage-teachpack",3248,117,12,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3241,117,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3267,118,5,8]),types.vector(["bootstrap2012/cage-teachpack",3276,118,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3267,118,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3297,119,5,5]),types.vector(["bootstrap2012/cage-teachpack",3303,119,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3297,119,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3325,120,5,7]),types.vector(["bootstrap2012/cage-teachpack",3333,120,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3325,120,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3353,121,5,5]),types.vector(["bootstrap2012/cage-teachpack",3359,121,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3353,121,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3377,122,5,5]),types.vector(["bootstrap2012/cage-teachpack",3383,122,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3377,122,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3401,123,5,7]),types.vector(["bootstrap2012/cage-teachpack",3409,123,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3401,123,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312]),types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3920,135,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/cage-teachpack",3920,135,9,11]),types.vector(["bootstrap2012/cage-teachpack",3932,135,21,1]),types.vector(["bootstrap2012/cage-teachpack",3934,135,23,1]),types.vector(["bootstrap2012/cage-teachpack",3936,135,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3950,136,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3955,136,8,1]),types.vector(["bootstrap2012/cage-teachpack",3957,136,10,41]),types.vector(["bootstrap2012/cage-teachpack",3999,136,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3955,136,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3958,136,11,3]),types.vector(["bootstrap2012/cage-teachpack",3962,136,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3957,136,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3958,136,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3963,136,16,1]),types.vector(["bootstrap2012/cage-teachpack",3965,136,18,15]),types.vector(["bootstrap2012/cage-teachpack",3981,136,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3962,136,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3963,136,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3966,136,19,9]),types.vector(["bootstrap2012/cage-teachpack",3978,136,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3965,136,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3966,136,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3982,136,35,9]),types.vector(["bootstrap2012/cage-teachpack",3994,136,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3981,136,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3982,136,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3950,136,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4018,137,8,1]),types.vector(["bootstrap2012/cage-teachpack",4020,137,10,41]),types.vector(["bootstrap2012/cage-teachpack",4062,137,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4018,137,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4021,137,11,3]),types.vector(["bootstrap2012/cage-teachpack",4025,137,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4020,137,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4021,137,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4026,137,16,1]),types.vector(["bootstrap2012/cage-teachpack",4028,137,18,15]),types.vector(["bootstrap2012/cage-teachpack",4044,137,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4025,137,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4026,137,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4029,137,19,11]),types.vector(["bootstrap2012/cage-teachpack",4041,137,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4028,137,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4029,137,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4045,137,35,11]),types.vector(["bootstrap2012/cage-teachpack",4057,137,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4044,137,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4045,137,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3950,136,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4081,138,8,1]),types.vector(["bootstrap2012/cage-teachpack",4083,138,10,41]),types.vector(["bootstrap2012/cage-teachpack",4125,138,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4081,138,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4084,138,11,3]),types.vector(["bootstrap2012/cage-teachpack",4088,138,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4083,138,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4084,138,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4089,138,16,1]),types.vector(["bootstrap2012/cage-teachpack",4091,138,18,15]),types.vector(["bootstrap2012/cage-teachpack",4107,138,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4088,138,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4089,138,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4092,138,19,10]),types.vector(["bootstrap2012/cage-teachpack",4104,138,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4091,138,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4092,138,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4108,138,35,10]),types.vector(["bootstrap2012/cage-teachpack",4120,138,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4107,138,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4108,138,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3950,136,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4144,139,8,1]),types.vector(["bootstrap2012/cage-teachpack",4146,139,10,41]),types.vector(["bootstrap2012/cage-teachpack",4188,139,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4144,139,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4147,139,11,3]),types.vector(["bootstrap2012/cage-teachpack",4151,139,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4146,139,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4147,139,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4152,139,16,1]),types.vector(["bootstrap2012/cage-teachpack",4154,139,18,15]),types.vector(["bootstrap2012/cage-teachpack",4170,139,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4151,139,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4152,139,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4155,139,19,11]),types.vector(["bootstrap2012/cage-teachpack",4167,139,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4154,139,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4155,139,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4171,139,35,11]),types.vector(["bootstrap2012/cage-teachpack",4183,139,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4170,139,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4171,139,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4293,143,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/cage-teachpack",4293,143,9,7]),types.vector(["bootstrap2012/cage-teachpack",4301,143,17,1]),types.vector(["bootstrap2012/cage-teachpack",4303,143,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4309,144,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4314,144,8,6]),types.vector(["bootstrap2012/cage-teachpack",4321,144,15,15]),types.vector(["bootstrap2012/cage-teachpack",4337,144,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4314,144,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4322,144,16,9]),types.vector(["bootstrap2012/cage-teachpack",4334,144,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4321,144,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4322,144,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4338,144,32,9]),types.vector(["bootstrap2012/cage-teachpack",4350,144,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4337,144,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4338,144,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4309,144,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4362,145,8,6]),types.vector(["bootstrap2012/cage-teachpack",4369,145,15,15]),types.vector(["bootstrap2012/cage-teachpack",4385,145,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4362,145,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4370,145,16,11]),types.vector(["bootstrap2012/cage-teachpack",4382,145,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4369,145,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4370,145,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4386,145,32,11]),types.vector(["bootstrap2012/cage-teachpack",4398,145,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4385,145,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4386,145,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4309,144,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4410,146,8,6]),types.vector(["bootstrap2012/cage-teachpack",4417,146,15,15]),types.vector(["bootstrap2012/cage-teachpack",4433,146,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4410,146,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4418,146,16,10]),types.vector(["bootstrap2012/cage-teachpack",4430,146,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4417,146,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4418,146,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4434,146,32,10]),types.vector(["bootstrap2012/cage-teachpack",4446,146,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4433,146,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4434,146,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4309,144,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4458,147,8,6]),types.vector(["bootstrap2012/cage-teachpack",4465,147,15,15]),types.vector(["bootstrap2012/cage-teachpack",4481,147,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4458,147,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4466,147,16,11]),types.vector(["bootstrap2012/cage-teachpack",4478,147,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4465,147,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4466,147,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4482,147,32,11]),types.vector(["bootstrap2012/cage-teachpack",4494,147,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4481,147,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4482,147,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5046,160,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5046,160,9,10]),types.vector(["bootstrap2012/cage-teachpack",5057,160,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5073,162,5,7]),types.vector(["bootstrap2012/cage-teachpack",5081,162,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5073,162,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5089,163,5,11]),types.vector(["bootstrap2012/cage-teachpack",5101,163,17,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5088,163,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5089,163,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59]),types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5134,168,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5134,168,9,15]),types.vector(["bootstrap2012/cage-teachpack",5150,168,25,1]),types.vector(["bootstrap2012/cage-teachpack",5152,168,27,1]),types.vector(["bootstrap2012/cage-teachpack",5154,168,29,1]),types.vector(["bootstrap2012/cage-teachpack",5156,168,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5162,169,3,1]),types.vector(["bootstrap2012/cage-teachpack",5164,169,5,7]),types.vector(["bootstrap2012/cage-teachpack",5172,169,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5161,169,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5162,169,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5165,169,6,1]),types.vector(["bootstrap2012/cage-teachpack",5167,169,8,1]),types.vector(["bootstrap2012/cage-teachpack",5169,169,10,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5164,169,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5165,169,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5186,171,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5186,171,9,22]),types.vector(["bootstrap2012/cage-teachpack",5209,171,32,6]),types.vector(["bootstrap2012/cage-teachpack",5216,171,39,3]),types.vector(["bootstrap2012/cage-teachpack",5220,171,43,5]),types.vector(["bootstrap2012/cage-teachpack",5226,171,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5236,172,2,345]),types.vector(["bootstrap2012/cage-teachpack",5245,172,11,21]),types.vector(["bootstrap2012/cage-teachpack",5279,173,11,21]),types.vector(["bootstrap2012/cage-teachpack",5315,174,13,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5236,172,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",5236,172,2,345]),types.vector(["bootstrap2012/cage-teachpack",5243,172,9,1]),types.vector(["bootstrap2012/cage-teachpack",5277,173,9,1]),types.vector(["bootstrap2012/cage-teachpack",5311,174,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5372,175,5,6]),types.vector(["bootstrap2012/cage-teachpack",5384,176,5,39]),types.vector(["bootstrap2012/cage-teachpack",5429,177,5,39]),types.vector(["bootstrap2012/cage-teachpack",5474,178,5,49]),types.vector(["bootstrap2012/cage-teachpack",5529,179,5,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5371,175,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5372,175,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5385,176,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5389,176,10,1]),types.vector(["bootstrap2012/cage-teachpack",5391,176,12,1]),types.vector(["bootstrap2012/cage-teachpack",5393,176,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5389,176,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5397,176,18,4]),types.vector(["bootstrap2012/cage-teachpack",5402,176,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5396,176,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5397,176,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5403,176,24,3]),types.vector(["bootstrap2012/cage-teachpack",5407,176,28,7]),types.vector(["bootstrap2012/cage-teachpack",5415,176,36,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5402,176,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5408,176,29,1]),types.vector(["bootstrap2012/cage-teachpack",5410,176,31,1]),types.vector(["bootstrap2012/cage-teachpack",5412,176,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5407,176,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5408,176,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5430,177,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5434,177,10,1]),types.vector(["bootstrap2012/cage-teachpack",5436,177,12,1]),types.vector(["bootstrap2012/cage-teachpack",5438,177,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5434,177,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5442,177,18,4]),types.vector(["bootstrap2012/cage-teachpack",5447,177,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5441,177,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5442,177,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5448,177,24,3]),types.vector(["bootstrap2012/cage-teachpack",5452,177,28,1]),types.vector(["bootstrap2012/cage-teachpack",5454,177,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5447,177,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5455,177,31,1]),types.vector(["bootstrap2012/cage-teachpack",5457,177,33,1]),types.vector(["bootstrap2012/cage-teachpack",5459,177,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5454,177,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5455,177,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5475,178,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5479,178,10,1]),types.vector(["bootstrap2012/cage-teachpack",5481,178,12,1]),types.vector(["bootstrap2012/cage-teachpack",5483,178,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5479,178,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5484,178,15,1]),types.vector(["bootstrap2012/cage-teachpack",5486,178,17,5]),types.vector(["bootstrap2012/cage-teachpack",5492,178,23,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5483,178,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5484,178,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5497,178,28,4]),types.vector(["bootstrap2012/cage-teachpack",5502,178,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5496,178,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5497,178,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5503,178,34,3]),types.vector(["bootstrap2012/cage-teachpack",5507,178,38,7]),types.vector(["bootstrap2012/cage-teachpack",5515,178,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5502,178,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5508,178,39,1]),types.vector(["bootstrap2012/cage-teachpack",5510,178,41,1]),types.vector(["bootstrap2012/cage-teachpack",5512,178,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5507,178,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5508,178,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5530,179,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5534,179,10,1]),types.vector(["bootstrap2012/cage-teachpack",5536,179,12,1]),types.vector(["bootstrap2012/cage-teachpack",5538,179,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5534,179,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5539,179,15,1]),types.vector(["bootstrap2012/cage-teachpack",5541,179,17,6]),types.vector(["bootstrap2012/cage-teachpack",5548,179,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5538,179,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5539,179,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5553,179,29,4]),types.vector(["bootstrap2012/cage-teachpack",5558,179,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5552,179,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5553,179,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5559,179,35,3]),types.vector(["bootstrap2012/cage-teachpack",5563,179,39,1]),types.vector(["bootstrap2012/cage-teachpack",5565,179,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5558,179,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5566,179,42,1]),types.vector(["bootstrap2012/cage-teachpack",5568,179,44,1]),types.vector(["bootstrap2012/cage-teachpack",5570,179,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5565,179,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5566,179,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5246,172,12,9]),types.vector(["bootstrap2012/cage-teachpack",5256,172,22,3]),types.vector(["bootstrap2012/cage-teachpack",5260,172,26,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5245,172,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5246,172,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5280,173,12,5]),types.vector(["bootstrap2012/cage-teachpack",5286,173,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5279,173,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5280,173,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5287,173,19,1]),types.vector(["bootstrap2012/cage-teachpack",5289,173,21,3]),types.vector(["bootstrap2012/cage-teachpack",5293,173,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5286,173,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5287,173,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",5316,174,14,6]),types.vector(["bootstrap2012/cage-teachpack",5324,174,22,1]),types.vector(["bootstrap2012/cage-teachpack",5326,174,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5330,174,28,15]),types.vector(["bootstrap2012/cage-teachpack",5346,174,44,1]),types.vector(["bootstrap2012/cage-teachpack",5348,174,46,1]),types.vector(["bootstrap2012/cage-teachpack",5350,174,48,5]),types.vector(["bootstrap2012/cage-teachpack",5356,174,54,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5329,174,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5330,174,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5593,181,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5593,181,9,22]),types.vector(["bootstrap2012/cage-teachpack",5616,181,32,6]),types.vector(["bootstrap2012/cage-teachpack",5623,181,39,5]),types.vector(["bootstrap2012/cage-teachpack",5629,181,45,6]),types.vector(["bootstrap2012/cage-teachpack",5636,181,52,7]),types.vector(["bootstrap2012/cage-teachpack",5644,181,60,7]),types.vector(["bootstrap2012/cage-teachpack",5652,181,68,11]),types.vector(["bootstrap2012/cage-teachpack",5664,181,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5677,182,2,973]),types.vector(["bootstrap2012/cage-teachpack",5690,182,15,53]),types.vector(["bootstrap2012/cage-teachpack",5759,183,14,11]),types.vector(["bootstrap2012/cage-teachpack",5786,184,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5677,182,2,973])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",5677,182,2,973]),types.vector(["bootstrap2012/cage-teachpack",5684,182,9,5]),types.vector(["bootstrap2012/cage-teachpack",5754,183,9,4]),types.vector(["bootstrap2012/cage-teachpack",5781,184,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5819,186,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5876,188,25,3]),types.vector(["bootstrap2012/cage-teachpack",5880,188,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5875,188,24,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5876,188,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5881,188,30,6]),types.vector(["bootstrap2012/cage-teachpack",5888,188,37,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5880,188,29,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5881,188,30,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5916,189,20,701]),types.vector(["bootstrap2012/cage-teachpack",5926,189,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5916,189,20,701])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",5916,189,20,701]),types.vector(["bootstrap2012/cage-teachpack",5923,189,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5994,191,25,4]),types.vector(["bootstrap2012/cage-teachpack",5999,191,30,5]),types.vector(["bootstrap2012/cage-teachpack",6005,191,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5993,191,24,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5994,191,25,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6006,191,37,3]),types.vector(["bootstrap2012/cage-teachpack",6010,191,41,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6005,191,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6006,191,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6049,192,31,3]),types.vector(["bootstrap2012/cage-teachpack",6053,192,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6048,192,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6049,192,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6054,192,36,8]),types.vector(["bootstrap2012/cage-teachpack",6063,192,45,4]),types.vector(["bootstrap2012/cage-teachpack",6068,192,50,2]),types.vector(["bootstrap2012/cage-teachpack",6071,192,53,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6053,192,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6054,192,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6138,194,29,9]),types.vector(["bootstrap2012/cage-teachpack",6148,194,39,4]),types.vector(["bootstrap2012/cage-teachpack",6153,194,44,2]),types.vector(["bootstrap2012/cage-teachpack",6156,194,47,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6137,194,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6138,194,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6189,195,29,4]),types.vector(["bootstrap2012/cage-teachpack",6194,195,34,4]),types.vector(["bootstrap2012/cage-teachpack",6199,195,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6188,195,28,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6189,195,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6200,195,40,4]),types.vector(["bootstrap2012/cage-teachpack",6205,195,45,2]),types.vector(["bootstrap2012/cage-teachpack",6208,195,48,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6199,195,39,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6200,195,40,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6244,196,29,4]),types.vector(["bootstrap2012/cage-teachpack",6249,196,34,5]),types.vector(["bootstrap2012/cage-teachpack",6290,197,34,291])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6243,196,28,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6244,196,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6291,197,35,6]),types.vector(["bootstrap2012/cage-teachpack",6298,197,42,5]),types.vector(["bootstrap2012/cage-teachpack",6346,198,42,234])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6290,197,34,291])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6291,197,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6347,198,43,6]),types.vector(["bootstrap2012/cage-teachpack",6354,198,50,127]),types.vector(["bootstrap2012/cage-teachpack",6532,200,50,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6346,198,42,234])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6347,198,43,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6355,198,51,6]),types.vector(["bootstrap2012/cage-teachpack",6363,198,59,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6,8,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6422,199,53,11]),types.vector(["bootstrap2012/cage-teachpack",6434,199,65,23]),types.vector(["bootstrap2012/cage-teachpack",6458,199,89,11]),types.vector(["bootstrap2012/cage-teachpack",6470,199,101,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6421,199,52,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6422,199,53,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6435,199,66,10]),types.vector(["bootstrap2012/cage-teachpack",6446,199,77,6]),types.vector(["bootstrap2012/cage-teachpack",6453,199,84,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6434,199,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6435,199,66,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6533,200,51,22]),types.vector(["bootstrap2012/cage-teachpack",6556,200,74,6]),types.vector(["bootstrap2012/cage-teachpack",6563,200,81,2]),types.vector(["bootstrap2012/cage-teachpack",6566,200,84,5]),types.vector(["bootstrap2012/cage-teachpack",6572,200,90,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6532,200,50,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6533,200,51,22])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6042,192,24,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6042,192,24,542])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6042,192,24,542])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6610,201,25,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6609,201,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5927,189,31,3]),types.vector(["bootstrap2012/cage-teachpack",5931,189,35,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5926,189,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5927,189,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5869,188,18,749])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5869,188,18,749])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5869,188,18,749])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6631,202,9,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6630,202,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5691,182,16,4]),types.vector(["bootstrap2012/cage-teachpack",5696,182,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5690,182,15,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5691,182,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5697,182,22,15]),types.vector(["bootstrap2012/cage-teachpack",5713,182,38,7]),types.vector(["bootstrap2012/cage-teachpack",5721,182,46,7]),types.vector(["bootstrap2012/cage-teachpack",5729,182,54,5]),types.vector(["bootstrap2012/cage-teachpack",5735,182,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5696,182,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5697,182,22,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5760,183,15,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5759,183,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5760,183,15,9])},"rands":[]}}},{"$":"constant","value":types.EMPTY}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6662,205,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/cage-teachpack",6662,205,9,16]),types.vector(["bootstrap2012/cage-teachpack",6679,205,26,3]),types.vector(["bootstrap2012/cage-teachpack",6683,205,30,7]),types.vector(["bootstrap2012/cage-teachpack",6691,205,38,7]),types.vector(["bootstrap2012/cage-teachpack",6699,205,46,12]),types.vector(["bootstrap2012/cage-teachpack",6712,205,59,17]),types.vector(["bootstrap2012/cage-teachpack",6730,205,77,9]),types.vector(["bootstrap2012/cage-teachpack",6740,205,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6760,206,9,42]),types.vector(["bootstrap2012/cage-teachpack",6763,206,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6760,206,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6760,206,9,42]),types.vector(["bootstrap2012/cage-teachpack",6761,206,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6812,207,9,25]),types.vector(["bootstrap2012/cage-teachpack",6819,207,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6812,207,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6812,207,9,25]),types.vector(["bootstrap2012/cage-teachpack",6813,207,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6847,208,9,27]),types.vector(["bootstrap2012/cage-teachpack",6855,208,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6847,208,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6847,208,9,27]),types.vector(["bootstrap2012/cage-teachpack",6848,208,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6884,209,9,142]),types.vector(["bootstrap2012/cage-teachpack",6887,209,12,138])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6884,209,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6884,209,9,142]),types.vector(["bootstrap2012/cage-teachpack",6885,209,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7036,212,9,34]),types.vector(["bootstrap2012/cage-teachpack",7039,212,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7036,212,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",7036,212,9,34]),types.vector(["bootstrap2012/cage-teachpack",7037,212,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7096,214,13,3]),types.vector(["bootstrap2012/cage-teachpack",7100,214,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7095,214,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7096,214,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7101,214,18,7]),types.vector(["bootstrap2012/cage-teachpack",7109,214,26,1]),types.vector(["bootstrap2012/cage-teachpack",7111,214,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7100,214,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7101,214,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7124,215,9,8]),types.vector(["bootstrap2012/cage-teachpack",7133,215,18,36]),types.vector(["bootstrap2012/cage-teachpack",7188,216,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7123,215,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7124,215,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",7134,215,19,6]),types.vector(["bootstrap2012/cage-teachpack",7142,215,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7148,215,33,11]),types.vector(["bootstrap2012/cage-teachpack",7160,215,45,1]),types.vector(["bootstrap2012/cage-teachpack",7162,215,47,3]),types.vector(["bootstrap2012/cage-teachpack",7166,215,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7147,215,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7148,215,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7189,216,19,22]),types.vector(["bootstrap2012/cage-teachpack",7212,216,42,1]),types.vector(["bootstrap2012/cage-teachpack",7214,216,44,5]),types.vector(["bootstrap2012/cage-teachpack",7220,216,50,6]),types.vector(["bootstrap2012/cage-teachpack",7227,216,57,7]),types.vector(["bootstrap2012/cage-teachpack",7235,216,65,7]),types.vector(["bootstrap2012/cage-teachpack",7243,216,73,1]),types.vector(["bootstrap2012/cage-teachpack",7245,216,75,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7188,216,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7189,216,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7089,214,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7089,214,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7089,214,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7265,217,7,18]),types.vector(["bootstrap2012/cage-teachpack",7284,217,26,16]),types.vector(["bootstrap2012/cage-teachpack",7301,217,43,5]),types.vector(["bootstrap2012/cage-teachpack",7307,217,49,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7264,217,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7265,217,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7285,217,27,12]),types.vector(["bootstrap2012/cage-teachpack",7298,217,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7284,217,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7285,217,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7040,212,13,10]),types.vector(["bootstrap2012/cage-teachpack",7051,212,24,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7039,212,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7040,212,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6888,209,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6922,210,17,10]),types.vector(["bootstrap2012/cage-teachpack",6933,210,28,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6921,210,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6922,210,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6964,211,17,10]),types.vector(["bootstrap2012/cage-teachpack",6975,211,28,1]),types.vector(["bootstrap2012/cage-teachpack",6977,211,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6963,211,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6964,211,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6978,211,31,15]),types.vector(["bootstrap2012/cage-teachpack",6994,211,47,7]),types.vector(["bootstrap2012/cage-teachpack",7002,211,55,7]),types.vector(["bootstrap2012/cage-teachpack",7010,211,63,5]),types.vector(["bootstrap2012/cage-teachpack",7016,211,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6977,211,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6978,211,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6856,208,18,12]),types.vector(["bootstrap2012/cage-teachpack",6869,208,31,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6855,208,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6856,208,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6820,207,17,11]),types.vector(["bootstrap2012/cage-teachpack",6832,207,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6819,207,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6820,207,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6764,206,13,12]),types.vector(["bootstrap2012/cage-teachpack",6777,206,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6763,206,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6764,206,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6778,206,27,17]),types.vector(["bootstrap2012/cage-teachpack",6796,206,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6777,206,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6778,206,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7328,219,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/cage-teachpack",7328,219,9,23]),types.vector(["bootstrap2012/cage-teachpack",7352,219,33,3]),types.vector(["bootstrap2012/cage-teachpack",7356,219,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7370,220,3,16]),types.vector(["bootstrap2012/cage-teachpack",7387,220,20,3]),types.vector(["bootstrap2012/cage-teachpack",7391,220,24,1]),types.vector(["bootstrap2012/cage-teachpack",7393,220,26,1]),types.vector(["bootstrap2012/cage-teachpack",7395,220,28,2]),types.vector(["bootstrap2012/cage-teachpack",7398,220,31,20]),types.vector(["bootstrap2012/cage-teachpack",7419,220,52,9]),types.vector(["bootstrap2012/cage-teachpack",7429,220,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7369,220,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7370,220,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7399,220,32,10]),types.vector(["bootstrap2012/cage-teachpack",7410,220,43,1]),types.vector(["bootstrap2012/cage-teachpack",7412,220,45,1]),types.vector(["bootstrap2012/cage-teachpack",7414,220,47,1]),types.vector(["bootstrap2012/cage-teachpack",7416,220,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7398,220,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7399,220,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7442,221,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/cage-teachpack",7442,221,9,24]),types.vector(["bootstrap2012/cage-teachpack",7467,221,34,3]),types.vector(["bootstrap2012/cage-teachpack",7471,221,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7484,222,2,442]),types.vector(["bootstrap2012/cage-teachpack",7496,222,14,20]),types.vector(["bootstrap2012/cage-teachpack",7539,223,21,2]),types.vector(["bootstrap2012/cage-teachpack",7560,224,17,1]),types.vector(["bootstrap2012/cage-teachpack",7576,225,13,23]),types.vector(["bootstrap2012/cage-teachpack",7614,226,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7484,222,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",7484,222,2,442]),types.vector(["bootstrap2012/cage-teachpack",7491,222,9,4]),types.vector(["bootstrap2012/cage-teachpack",7527,223,9,11]),types.vector(["bootstrap2012/cage-teachpack",7552,224,9,7]),types.vector(["bootstrap2012/cage-teachpack",7572,225,9,3]),types.vector(["bootstrap2012/cage-teachpack",7610,226,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7646,227,5,16]),types.vector(["bootstrap2012/cage-teachpack",7669,228,5,207]),types.vector(["bootstrap2012/cage-teachpack",7882,233,5,3]),types.vector(["bootstrap2012/cage-teachpack",7886,233,9,3]),types.vector(["bootstrap2012/cage-teachpack",7890,233,13,11]),types.vector(["bootstrap2012/cage-teachpack",7902,233,25,4]),types.vector(["bootstrap2012/cage-teachpack",7907,233,30,9]),types.vector(["bootstrap2012/cage-teachpack",7917,233,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7645,227,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7646,227,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7670,228,6,16]),types.vector(["bootstrap2012/cage-teachpack",7693,229,6,135]),types.vector(["bootstrap2012/cage-teachpack",7835,232,6,1]),types.vector(["bootstrap2012/cage-teachpack",7837,232,8,3]),types.vector(["bootstrap2012/cage-teachpack",7841,232,12,11]),types.vector(["bootstrap2012/cage-teachpack",7853,232,24,4]),types.vector(["bootstrap2012/cage-teachpack",7858,232,29,9]),types.vector(["bootstrap2012/cage-teachpack",7868,232,39,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7669,228,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7670,228,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7694,229,7,16]),types.vector(["bootstrap2012/cage-teachpack",7718,230,7,61]),types.vector(["bootstrap2012/cage-teachpack",7787,231,7,3]),types.vector(["bootstrap2012/cage-teachpack",7791,231,11,1]),types.vector(["bootstrap2012/cage-teachpack",7793,231,13,11]),types.vector(["bootstrap2012/cage-teachpack",7805,231,25,4]),types.vector(["bootstrap2012/cage-teachpack",7810,231,30,9]),types.vector(["bootstrap2012/cage-teachpack",7820,231,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7693,229,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7694,229,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7719,230,8,16]),types.vector(["bootstrap2012/cage-teachpack",7736,230,25,3]),types.vector(["bootstrap2012/cage-teachpack",7740,230,29,1]),types.vector(["bootstrap2012/cage-teachpack",7742,230,31,1]),types.vector(["bootstrap2012/cage-teachpack",7744,230,33,11]),types.vector(["bootstrap2012/cage-teachpack",7756,230,45,4]),types.vector(["bootstrap2012/cage-teachpack",7761,230,50,9]),types.vector(["bootstrap2012/cage-teachpack",7771,230,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7718,230,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7719,230,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7497,222,15,10]),types.vector(["bootstrap2012/cage-teachpack",7508,222,26,1]),types.vector(["bootstrap2012/cage-teachpack",7510,222,28,1]),types.vector(["bootstrap2012/cage-teachpack",7512,222,30,1]),types.vector(["bootstrap2012/cage-teachpack",7514,222,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7496,222,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7497,222,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7577,225,14,1]),types.vector(["bootstrap2012/cage-teachpack",7579,225,16,17]),types.vector(["bootstrap2012/cage-teachpack",7597,225,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7576,225,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7577,225,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7580,225,17,11]),types.vector(["bootstrap2012/cage-teachpack",7592,225,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7579,225,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7580,225,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7615,226,14,1]),types.vector(["bootstrap2012/cage-teachpack",7617,226,16,18]),types.vector(["bootstrap2012/cage-teachpack",7636,226,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7614,226,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7615,226,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7618,226,17,12]),types.vector(["bootstrap2012/cage-teachpack",7631,226,30,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7617,226,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7618,226,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8095,238,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/cage-teachpack",8095,238,9,13]),types.vector(["bootstrap2012/cage-teachpack",8109,238,23,3]),types.vector(["bootstrap2012/cage-teachpack",8113,238,27,12]),types.vector(["bootstrap2012/cage-teachpack",8126,238,40,17]),types.vector(["bootstrap2012/cage-teachpack",8144,238,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8157,239,2,299]),types.vector(["bootstrap2012/cage-teachpack",8168,239,13,25]),types.vector(["bootstrap2012/cage-teachpack",8208,240,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8157,239,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",8157,239,2,299]),types.vector(["bootstrap2012/cage-teachpack",8164,239,9,3]),types.vector(["bootstrap2012/cage-teachpack",8204,240,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8246,241,5,18]),types.vector(["bootstrap2012/cage-teachpack",8270,242,5,137]),types.vector(["bootstrap2012/cage-teachpack",8413,247,5,17]),types.vector(["bootstrap2012/cage-teachpack",8436,248,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8245,241,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8246,241,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8271,242,6,3]),types.vector(["bootstrap2012/cage-teachpack",8275,242,10,97]),types.vector(["bootstrap2012/cage-teachpack",8383,246,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8270,242,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8271,242,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",8276,242,11,6]),types.vector(["bootstrap2012/cage-teachpack",8284,242,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8300,243,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8304,243,17,11]),types.vector(["bootstrap2012/cage-teachpack",8316,243,29,1]),types.vector(["bootstrap2012/cage-teachpack",8318,243,31,3]),types.vector(["bootstrap2012/cage-teachpack",8322,243,35,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8304,243,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8384,246,11,17]),types.vector(["bootstrap2012/cage-teachpack",8402,246,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8383,246,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8384,246,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8414,247,6,11]),types.vector(["bootstrap2012/cage-teachpack",8426,247,18,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8413,247,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8414,247,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8437,248,6,12]),types.vector(["bootstrap2012/cage-teachpack",8450,248,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8436,248,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8437,248,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8169,239,14,10]),types.vector(["bootstrap2012/cage-teachpack",8180,239,25,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8168,239,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8169,239,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8209,240,14,10]),types.vector(["bootstrap2012/cage-teachpack",8220,240,25,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8208,240,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8209,240,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8579,251,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/cage-teachpack",8579,251,9,12]),types.vector(["bootstrap2012/cage-teachpack",8592,251,22,3]),types.vector(["bootstrap2012/cage-teachpack",8596,251,26,12]),types.vector(["bootstrap2012/cage-teachpack",8609,251,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8623,252,3,13]),types.vector(["bootstrap2012/cage-teachpack",8637,252,17,3]),types.vector(["bootstrap2012/cage-teachpack",8641,252,21,12]),types.vector(["bootstrap2012/cage-teachpack",8654,252,34,20]),types.vector(["bootstrap2012/cage-teachpack",8675,252,55,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8622,252,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8623,252,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8655,252,35,10]),types.vector(["bootstrap2012/cage-teachpack",8666,252,46,1]),types.vector(["bootstrap2012/cage-teachpack",8668,252,48,1]),types.vector(["bootstrap2012/cage-teachpack",8670,252,50,1]),types.vector(["bootstrap2012/cage-teachpack",8672,252,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8654,252,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8655,252,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8822,256,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/cage-teachpack",8822,256,9,11]),types.vector(["bootstrap2012/cage-teachpack",8834,256,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8842,257,3,24]),types.vector(["bootstrap2012/cage-teachpack",8867,257,28,16]),types.vector(["bootstrap2012/cage-teachpack",8884,257,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8841,257,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8842,257,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8868,257,29,10]),types.vector(["bootstrap2012/cage-teachpack",8879,257,40,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8867,257,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8868,257,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8941,260,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/cage-teachpack",8941,260,9,12]),types.vector(["bootstrap2012/cage-teachpack",8954,260,22,3]),types.vector(["bootstrap2012/cage-teachpack",8958,260,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8967,261,3,10]),types.vector(["bootstrap2012/cage-teachpack",8978,261,14,3]),types.vector(["bootstrap2012/cage-teachpack",8982,261,18,27]),types.vector(["bootstrap2012/cage-teachpack",9010,261,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8966,261,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8967,261,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8983,261,19,13]),types.vector(["bootstrap2012/cage-teachpack",8997,261,33,4]),types.vector(["bootstrap2012/cage-teachpack",9002,261,38,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8982,261,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8983,261,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9011,261,47,11]),types.vector(["bootstrap2012/cage-teachpack",9023,261,59,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9010,261,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9011,261,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9124,268,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9124,268,9,15]),types.vector(["bootstrap2012/cage-teachpack",9140,268,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9146,269,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9280,273,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9280,273,9,14]),types.vector(["bootstrap2012/cage-teachpack",9295,273,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9301,274,3,13]),types.vector(["bootstrap2012/cage-teachpack",9315,274,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9300,274,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9301,274,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9316,274,18,15]),types.vector(["bootstrap2012/cage-teachpack",9332,274,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9315,274,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9316,274,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9425,280,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9425,280,9,13]),types.vector(["bootstrap2012/cage-teachpack",9439,280,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9445,281,3,4]),types.vector(["bootstrap2012/cage-teachpack",9450,281,8,1]),types.vector(["bootstrap2012/cage-teachpack",9452,281,10,2]),types.vector(["bootstrap2012/cage-teachpack",9455,281,13,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9444,281,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9445,281,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9550,285,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9550,285,9,13]),types.vector(["bootstrap2012/cage-teachpack",9564,285,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9570,286,3,13]),types.vector(["bootstrap2012/cage-teachpack",9584,286,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9569,286,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9570,286,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9585,286,18,14]),types.vector(["bootstrap2012/cage-teachpack",9600,286,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9584,286,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9585,286,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9771,292,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9771,292,9,10]),types.vector(["bootstrap2012/cage-teachpack",9782,292,20,10]),types.vector(["bootstrap2012/cage-teachpack",9793,292,31,1]),types.vector(["bootstrap2012/cage-teachpack",9795,292,33,1]),types.vector(["bootstrap2012/cage-teachpack",9797,292,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9812,293,3,10]),types.vector(["bootstrap2012/cage-teachpack",9823,293,14,10]),types.vector(["bootstrap2012/cage-teachpack",9834,293,25,1]),types.vector(["bootstrap2012/cage-teachpack",9836,293,27,7]),types.vector(["bootstrap2012/cage-teachpack",9844,293,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9811,293,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9812,293,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9837,293,28,1]),types.vector(["bootstrap2012/cage-teachpack",9839,293,30,1]),types.vector(["bootstrap2012/cage-teachpack",9841,293,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9836,293,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9837,293,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10024,298,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10024,298,9,9]),types.vector(["bootstrap2012/cage-teachpack",10034,298,19,10]),types.vector(["bootstrap2012/cage-teachpack",10045,298,30,1]),types.vector(["bootstrap2012/cage-teachpack",10047,298,32,1]),types.vector(["bootstrap2012/cage-teachpack",10049,298,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10064,299,3,11]),types.vector(["bootstrap2012/cage-teachpack",10076,299,15,10]),types.vector(["bootstrap2012/cage-teachpack",10087,299,26,1]),types.vector(["bootstrap2012/cage-teachpack",10089,299,28,31]),types.vector(["bootstrap2012/cage-teachpack",10121,299,60,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10063,299,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10064,299,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10090,299,29,1]),types.vector(["bootstrap2012/cage-teachpack",10092,299,31,25]),types.vector(["bootstrap2012/cage-teachpack",10118,299,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10089,299,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10090,299,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10093,299,32,12]),types.vector(["bootstrap2012/cage-teachpack",10106,299,45,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10092,299,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10093,299,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10208,302,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10208,302,9,2]),types.vector(["bootstrap2012/cage-teachpack",10211,302,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10215,302,16,1]),types.vector(["bootstrap2012/cage-teachpack",10217,302,18,1]),types.vector(["bootstrap2012/cage-teachpack",10219,302,20,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10214,302,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10215,302,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10441,307,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10441,307,9,4]),types.vector(["bootstrap2012/cage-teachpack",10446,307,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10450,307,18,3]),types.vector(["bootstrap2012/cage-teachpack",10454,307,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10449,307,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10450,307,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10455,307,23,1]),types.vector(["bootstrap2012/cage-teachpack",10457,307,25,1]),types.vector(["bootstrap2012/cage-teachpack",10459,307,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10454,307,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10455,307,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10460,307,28,1]),types.vector(["bootstrap2012/cage-teachpack",10462,307,30,2]),types.vector(["bootstrap2012/cage-teachpack",10465,307,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10459,307,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10460,307,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10462,307,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10693,312,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10693,312,9,6]),types.vector(["bootstrap2012/cage-teachpack",10700,312,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10704,312,20,3]),types.vector(["bootstrap2012/cage-teachpack",10708,312,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10703,312,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10704,312,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10709,312,25,1]),types.vector(["bootstrap2012/cage-teachpack",10711,312,27,1]),types.vector(["bootstrap2012/cage-teachpack",10713,312,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10708,312,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10709,312,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10714,312,30,1]),types.vector(["bootstrap2012/cage-teachpack",10716,312,32,2]),types.vector(["bootstrap2012/cage-teachpack",10719,312,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10713,312,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10714,312,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10716,312,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10945,317,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10945,317,9,7]),types.vector(["bootstrap2012/cage-teachpack",10953,317,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10957,317,21,3]),types.vector(["bootstrap2012/cage-teachpack",10961,317,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10956,317,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10957,317,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10962,317,26,1]),types.vector(["bootstrap2012/cage-teachpack",10964,317,28,1]),types.vector(["bootstrap2012/cage-teachpack",10966,317,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10961,317,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10962,317,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10967,317,31,1]),types.vector(["bootstrap2012/cage-teachpack",10969,317,33,2]),types.vector(["bootstrap2012/cage-teachpack",10972,317,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10966,317,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10967,317,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10969,317,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11055,321,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/cage-teachpack",11055,321,9,4]),types.vector(["bootstrap2012/cage-teachpack",11060,321,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11068,322,3,8]),types.vector(["bootstrap2012/cage-teachpack",11077,322,12,3]),types.vector(["bootstrap2012/cage-teachpack",11081,322,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11067,322,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11068,322,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11082,322,17,6]),types.vector(["bootstrap2012/cage-teachpack",11089,322,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11081,322,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11082,322,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11090,322,25,6]),types.vector(["bootstrap2012/cage-teachpack",11097,322,32,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11089,322,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11090,322,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11212,326,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/cage-teachpack",11212,326,9,7]),types.vector(["bootstrap2012/cage-teachpack",11220,326,17,1]),types.vector(["bootstrap2012/cage-teachpack",11222,326,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11229,327,3,6]),types.vector(["bootstrap2012/cage-teachpack",11239,328,3,29]),types.vector(["bootstrap2012/cage-teachpack",11272,329,3,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11228,327,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11229,327,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",11240,328,4,6]),types.vector(["bootstrap2012/cage-teachpack",11248,328,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11254,328,18,6]),types.vector(["bootstrap2012/cage-teachpack",11261,328,25,3]),types.vector(["bootstrap2012/cage-teachpack",11265,328,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11253,328,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11254,328,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11286,331,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/cage-teachpack",11286,331,9,3]),types.vector(["bootstrap2012/cage-teachpack",11290,331,13,1]),types.vector(["bootstrap2012/cage-teachpack",11292,331,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11298,332,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11302,332,7,5]),types.vector(["bootstrap2012/cage-teachpack",11308,332,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11302,332,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11312,332,17,7]),types.vector(["bootstrap2012/cage-teachpack",11320,332,25,1]),types.vector(["bootstrap2012/cage-teachpack",11322,332,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11311,332,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11312,332,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11326,332,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11330,332,35,3]),types.vector(["bootstrap2012/cage-teachpack",11334,332,39,12]),types.vector(["bootstrap2012/cage-teachpack",11347,332,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11330,332,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11335,332,40,6]),types.vector(["bootstrap2012/cage-teachpack",11342,332,47,1]),types.vector(["bootstrap2012/cage-teachpack",11344,332,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11334,332,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11335,332,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11371,335,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/cage-teachpack",11371,335,9,7]),types.vector(["bootstrap2012/cage-teachpack",11379,335,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11387,336,3,7]),types.vector(["bootstrap2012/cage-teachpack",11395,336,11,3]),types.vector(["bootstrap2012/cage-teachpack",11399,336,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11386,336,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11387,336,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11400,336,16,9]),types.vector(["bootstrap2012/cage-teachpack",11410,336,26,17]),types.vector(["bootstrap2012/cage-teachpack",11428,336,44,18]),types.vector(["bootstrap2012/cage-teachpack",11447,336,63,7]),types.vector(["bootstrap2012/cage-teachpack",11455,336,71,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11399,336,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11400,336,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11411,336,27,11]),types.vector(["bootstrap2012/cage-teachpack",11423,336,39,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11410,336,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11411,336,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11429,336,45,12]),types.vector(["bootstrap2012/cage-teachpack",11442,336,58,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11428,336,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11429,336,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}}]}}, 'provides': ["pick","sq","subset?","tangent","type","start","string->image","sine","put-image","color->alpha","in?","number->image","overlay-at","cosine","boolean->string","clipart/url","boolean->image"]}; +window.COLLECTIONS["bootstrap2012/cage-teachpack"] = { 'name': "bootstrap2012/cage-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"set!"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"onscreen?"},{"$":"global-bucket","value":"onscreen?*"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"draw-butterfly"},{"$":"global-bucket","value":"move"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"world-ref"},{"$":"global-bucket","value":"world-x"},{"$":"global-bucket","value":"world?"},{"$":"global-bucket","value":"world-y"},{"$":"global-bucket","value":"world-set!"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"world"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"make-world"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"butterfly"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"boolean->image"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("quotient"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string=?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure-arity"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-field-accessor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-struct-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",307,14,8,5])}],"body":{"$":"constant","value":640}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",327,15,8,6])}],"body":{"$":"constant","value":480}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",348,17,8,9])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",359,17,19,10]),types.vector(["bootstrap2012/cage-teachpack",370,17,30,61]),types.vector(["bootstrap2012/cage-teachpack",358,17,18,74])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",358,17,18,74])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",359,17,19,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2012/butterfly.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",525,21,15,5])},{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"rands":[{"$":"constant","value":types.symbol("world")},{"$":"constant","value":false},{"$":"constant","value":2},{"$":"constant","value":0}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"constant","value":0},{"$":"constant","value":types.symbol("x")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27]),types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},"rands":[{"$":"toplevel","depth":3,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",510,21,0,27])},{"$":"constant","value":1},{"$":"constant","value":types.symbol("y")}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",606,25,9,4])}],"body":{"$":"lam","name":types.symbol("move"),"locs":[types.vector(["bootstrap2012/cage-teachpack",606,25,9,4]),types.vector(["bootstrap2012/cage-teachpack",611,25,14,1]),types.vector(["bootstrap2012/cage-teachpack",613,25,16,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",632,27,6,3]),types.vector(["bootstrap2012/cage-teachpack",636,27,10,13]),types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",632,27,6,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",637,27,11,7]),types.vector(["bootstrap2012/cage-teachpack",645,27,19,3]),types.vector(["bootstrap2012/cage-teachpack",636,27,10,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",636,27,10,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",637,27,11,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",631,27,5,19])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",660,28,6,8]),types.vector(["bootstrap2012/cage-teachpack",669,28,15,3]),types.vector(["bootstrap2012/cage-teachpack",673,28,19,6]),types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",660,28,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"left"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",659,28,5,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",688,29,6,10]),types.vector(["bootstrap2012/cage-teachpack",699,29,17,18]),types.vector(["bootstrap2012/cage-teachpack",718,29,36,11]),types.vector(["bootstrap2012/cage-teachpack",687,29,5,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",687,29,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",688,29,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",700,29,18,1]),types.vector(["bootstrap2012/cage-teachpack",702,29,20,11]),types.vector(["bootstrap2012/cage-teachpack",714,29,32,2]),types.vector(["bootstrap2012/cage-teachpack",699,29,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",699,29,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",700,29,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",703,29,21,7]),types.vector(["bootstrap2012/cage-teachpack",711,29,29,1]),types.vector(["bootstrap2012/cage-teachpack",702,29,20,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",702,29,20,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",703,29,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",719,29,37,7]),types.vector(["bootstrap2012/cage-teachpack",727,29,45,1]),types.vector(["bootstrap2012/cage-teachpack",718,29,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",718,29,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",719,29,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",738,30,6,8]),types.vector(["bootstrap2012/cage-teachpack",747,30,15,3]),types.vector(["bootstrap2012/cage-teachpack",751,30,19,7]),types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",738,30,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"right"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",737,30,5,22])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",767,31,6,10]),types.vector(["bootstrap2012/cage-teachpack",778,31,17,18]),types.vector(["bootstrap2012/cage-teachpack",797,31,36,11]),types.vector(["bootstrap2012/cage-teachpack",766,31,5,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",766,31,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",767,31,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",779,31,18,1]),types.vector(["bootstrap2012/cage-teachpack",781,31,20,11]),types.vector(["bootstrap2012/cage-teachpack",793,31,32,2]),types.vector(["bootstrap2012/cage-teachpack",778,31,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",778,31,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",779,31,18,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",782,31,21,7]),types.vector(["bootstrap2012/cage-teachpack",790,31,29,1]),types.vector(["bootstrap2012/cage-teachpack",781,31,20,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",781,31,20,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",782,31,21,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",798,31,37,7]),types.vector(["bootstrap2012/cage-teachpack",806,31,45,1]),types.vector(["bootstrap2012/cage-teachpack",797,31,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",797,31,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",798,31,37,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",817,32,6,8]),types.vector(["bootstrap2012/cage-teachpack",826,32,15,3]),types.vector(["bootstrap2012/cage-teachpack",830,32,19,6]),types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",817,32,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"down"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",816,32,5,21])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",845,33,6,10]),types.vector(["bootstrap2012/cage-teachpack",856,33,17,11]),types.vector(["bootstrap2012/cage-teachpack",868,33,29,18]),types.vector(["bootstrap2012/cage-teachpack",844,33,5,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",844,33,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",845,33,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",857,33,18,7]),types.vector(["bootstrap2012/cage-teachpack",865,33,26,1]),types.vector(["bootstrap2012/cage-teachpack",856,33,17,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",856,33,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",857,33,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",869,33,30,1]),types.vector(["bootstrap2012/cage-teachpack",871,33,32,11]),types.vector(["bootstrap2012/cage-teachpack",883,33,44,2]),types.vector(["bootstrap2012/cage-teachpack",868,33,29,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",868,33,29,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",869,33,30,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",872,33,33,7]),types.vector(["bootstrap2012/cage-teachpack",880,33,41,1]),types.vector(["bootstrap2012/cage-teachpack",871,33,32,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",871,33,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",872,33,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",895,34,6,8]),types.vector(["bootstrap2012/cage-teachpack",904,34,15,3]),types.vector(["bootstrap2012/cage-teachpack",908,34,19,4]),types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",895,34,6,8])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"up"}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",894,34,5,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",921,35,6,10]),types.vector(["bootstrap2012/cage-teachpack",932,35,17,11]),types.vector(["bootstrap2012/cage-teachpack",944,35,29,18]),types.vector(["bootstrap2012/cage-teachpack",920,35,5,43])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",920,35,5,43])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",921,35,6,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",933,35,18,7]),types.vector(["bootstrap2012/cage-teachpack",941,35,26,1]),types.vector(["bootstrap2012/cage-teachpack",932,35,17,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",932,35,17,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",933,35,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",945,35,30,1]),types.vector(["bootstrap2012/cage-teachpack",947,35,32,11]),types.vector(["bootstrap2012/cage-teachpack",959,35,44,2]),types.vector(["bootstrap2012/cage-teachpack",944,35,29,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",944,35,29,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",945,35,30,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",948,35,33,7]),types.vector(["bootstrap2012/cage-teachpack",956,35,41,1]),types.vector(["bootstrap2012/cage-teachpack",947,35,32,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",947,35,32,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",948,35,33,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":10}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4]),types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",970,36,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",620,26,2,358]),types.vector(["bootstrap2012/cage-teachpack",620,26,2,358]),types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",620,26,2,358])}]}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1148,42,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2012/cage-teachpack",1148,42,9,10]),types.vector(["bootstrap2012/cage-teachpack",1159,42,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1171,43,9,200]),types.vector(["bootstrap2012/cage-teachpack",1198,44,10,172]),types.vector(["bootstrap2012/cage-teachpack",1171,43,9,200])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1171,43,9,200])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1171,43,9,200]),types.vector(["bootstrap2012/cage-teachpack",1172,43,10,14])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1381,49,9,391]),types.vector(["bootstrap2012/cage-teachpack",1403,50,10,368]),types.vector(["bootstrap2012/cage-teachpack",1381,49,9,391])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1381,49,9,391])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1381,49,9,391]),types.vector(["bootstrap2012/cage-teachpack",1382,49,10,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1779,61,5,14]),types.vector(["bootstrap2012/cage-teachpack",1794,61,20,1]),types.vector(["bootstrap2012/cage-teachpack",1817,62,20,40]),types.vector(["bootstrap2012/cage-teachpack",1778,61,4,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1778,61,4,80])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1818,62,21,9]),types.vector(["bootstrap2012/cage-teachpack",1828,62,31,1]),types.vector(["bootstrap2012/cage-teachpack",1830,62,33,26]),types.vector(["bootstrap2012/cage-teachpack",1817,62,20,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1817,62,20,40])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1831,62,34,11]),types.vector(["bootstrap2012/cage-teachpack",1843,62,46,5]),types.vector(["bootstrap2012/cage-teachpack",1849,62,52,6]),types.vector(["bootstrap2012/cage-teachpack",1830,62,33,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1830,62,33,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1831,62,34,11])},"rands":[{"$":"toplevel","depth":6,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1843,62,46,5])},{"$":"toplevel","depth":6,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1849,62,52,6])}]}}}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1404,50,11,6]),types.vector(["bootstrap2012/cage-teachpack",1412,50,19,1]),types.vector(["bootstrap2012/cage-teachpack",1414,50,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1434,51,13,11]),types.vector(["bootstrap2012/cage-teachpack",1459,52,13,244]),types.vector(["bootstrap2012/cage-teachpack",1710,58,13,32]),types.vector(["bootstrap2012/cage-teachpack",1749,59,13,1]),types.vector(["bootstrap2012/cage-teachpack",1764,60,13,5]),types.vector(["bootstrap2012/cage-teachpack",1433,51,12,337])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1433,51,12,337])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1434,51,13,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1460,52,14,4]),types.vector(["bootstrap2012/cage-teachpack",1480,53,14,198]),types.vector(["bootstrap2012/cage-teachpack",1693,57,14,2]),types.vector(["bootstrap2012/cage-teachpack",1696,57,17,6]),types.vector(["bootstrap2012/cage-teachpack",1459,52,13,244])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1459,52,13,244])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1460,52,14,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1481,53,15,13]),types.vector(["bootstrap2012/cage-teachpack",1495,53,29,16]),types.vector(["bootstrap2012/cage-teachpack",1542,54,29,28]),types.vector(["bootstrap2012/cage-teachpack",1600,55,29,19]),types.vector(["bootstrap2012/cage-teachpack",1649,56,29,28]),types.vector(["bootstrap2012/cage-teachpack",1480,53,14,198])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1480,53,14,198])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1481,53,15,13])},"rands":[{"$":"constant","value":"x-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1543,54,30,14]),types.vector(["bootstrap2012/cage-teachpack",1558,54,45,11]),types.vector(["bootstrap2012/cage-teachpack",1542,54,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1542,54,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1543,54,30,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1559,54,46,7]),types.vector(["bootstrap2012/cage-teachpack",1567,54,54,1]),types.vector(["bootstrap2012/cage-teachpack",1558,54,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1558,54,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1559,54,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":" y-coordinate: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1650,56,30,14]),types.vector(["bootstrap2012/cage-teachpack",1665,56,45,11]),types.vector(["bootstrap2012/cage-teachpack",1649,56,29,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1649,56,29,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1650,56,30,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1666,56,46,7]),types.vector(["bootstrap2012/cage-teachpack",1674,56,54,1]),types.vector(["bootstrap2012/cage-teachpack",1665,56,45,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1665,56,45,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1666,56,46,7])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1711,58,14,8]),types.vector(["bootstrap2012/cage-teachpack",1720,58,23,19]),types.vector(["bootstrap2012/cage-teachpack",1740,58,43,1]),types.vector(["bootstrap2012/cage-teachpack",1710,58,13,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1710,58,13,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1711,58,14,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1721,58,24,11]),types.vector(["bootstrap2012/cage-teachpack",1733,58,36,5]),types.vector(["bootstrap2012/cage-teachpack",1720,58,23,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1720,58,23,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1721,58,24,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1199,44,11,6]),types.vector(["bootstrap2012/cage-teachpack",1207,44,19,1]),types.vector(["bootstrap2012/cage-teachpack",1209,44,21,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1229,45,13,11]),types.vector(["bootstrap2012/cage-teachpack",1241,45,25,9]),types.vector(["bootstrap2012/cage-teachpack",1277,46,25,11]),types.vector(["bootstrap2012/cage-teachpack",1315,47,25,22]),types.vector(["bootstrap2012/cage-teachpack",1363,48,25,5]),types.vector(["bootstrap2012/cage-teachpack",1228,45,12,141])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1228,45,12,141])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1229,45,13,11])},"rands":[{"$":"toplevel","depth":4,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1241,45,25,9])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1278,46,26,7]),types.vector(["bootstrap2012/cage-teachpack",1286,46,34,1]),types.vector(["bootstrap2012/cage-teachpack",1277,46,25,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1277,46,25,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1278,46,26,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1316,47,26,1]),types.vector(["bootstrap2012/cage-teachpack",1318,47,28,6]),types.vector(["bootstrap2012/cage-teachpack",1325,47,35,11]),types.vector(["bootstrap2012/cage-teachpack",1315,47,25,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1315,47,25,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1316,47,26,1])},"rands":[{"$":"toplevel","depth":6,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1318,47,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1326,47,36,7]),types.vector(["bootstrap2012/cage-teachpack",1334,47,44,1]),types.vector(["bootstrap2012/cage-teachpack",1325,47,35,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1325,47,35,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1326,47,36,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1872,65,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap2012/cage-teachpack",1872,65,9,5]),types.vector(["bootstrap2012/cage-teachpack",1878,65,15,9])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1898,66,9,139]),types.vector(["bootstrap2012/cage-teachpack",1910,66,21,126]),types.vector(["bootstrap2012/cage-teachpack",1898,66,9,139])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1898,66,9,139])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",1898,66,9,139]),types.vector(["bootstrap2012/cage-teachpack",1899,66,10,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2047,69,9,199]),types.vector(["bootstrap2012/cage-teachpack",2055,69,17,190]),types.vector(["bootstrap2012/cage-teachpack",2047,69,9,199])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2047,69,9,199])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",2047,69,9,199]),types.vector(["bootstrap2012/cage-teachpack",2048,69,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2253,74,5,8]),types.vector(["bootstrap2012/cage-teachpack",2262,74,14,37]),types.vector(["bootstrap2012/cage-teachpack",2314,75,14,22]),types.vector(["bootstrap2012/cage-teachpack",2351,76,14,15]),types.vector(["bootstrap2012/cage-teachpack",2252,74,4,115])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2252,74,4,115])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2253,74,5,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2263,74,15,10]),types.vector(["bootstrap2012/cage-teachpack",2274,74,26,11]),types.vector(["bootstrap2012/cage-teachpack",2286,74,38,12]),types.vector(["bootstrap2012/cage-teachpack",2262,74,14,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2262,74,14,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2263,74,15,10])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2275,74,27,1]),types.vector(["bootstrap2012/cage-teachpack",2277,74,29,5]),types.vector(["bootstrap2012/cage-teachpack",2283,74,35,1]),types.vector(["bootstrap2012/cage-teachpack",2274,74,26,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2274,74,26,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2275,74,27,1])},"rands":[{"$":"toplevel","depth":7,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2277,74,29,5])},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2287,74,39,1]),types.vector(["bootstrap2012/cage-teachpack",2289,74,41,6]),types.vector(["bootstrap2012/cage-teachpack",2296,74,48,1]),types.vector(["bootstrap2012/cage-teachpack",2286,74,38,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2286,74,38,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2287,74,39,1])},"rands":[{"$":"toplevel","depth":7,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2289,74,41,6])},{"$":"constant","value":2}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2315,75,15,9]),types.vector(["bootstrap2012/cage-teachpack",2325,75,25,10]),types.vector(["bootstrap2012/cage-teachpack",2314,75,14,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2314,75,14,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2315,75,15,9])},"rands":[{"$":"toplevel","depth":4,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2325,75,25,10])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2352,76,15,6]),types.vector(["bootstrap2012/cage-teachpack",2359,76,22,6]),types.vector(["bootstrap2012/cage-teachpack",2351,76,14,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2351,76,14,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2352,76,15,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",2056,69,18,6]),types.vector(["bootstrap2012/cage-teachpack",2064,69,26,1]),types.vector(["bootstrap2012/cage-teachpack",2066,69,28,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2090,70,20,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2094,70,24,10]),types.vector(["bootstrap2012/cage-teachpack",2105,70,35,20]),types.vector(["bootstrap2012/cage-teachpack",2162,71,35,20]),types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2106,70,36,7]),types.vector(["bootstrap2012/cage-teachpack",2114,70,44,10]),types.vector(["bootstrap2012/cage-teachpack",2105,70,35,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2105,70,35,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2106,70,36,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2115,70,45,4]),types.vector(["bootstrap2012/cage-teachpack",2120,70,50,1]),types.vector(["bootstrap2012/cage-teachpack",2122,70,52,1]),types.vector(["bootstrap2012/cage-teachpack",2114,70,44,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2114,70,44,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2115,70,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2163,71,36,7]),types.vector(["bootstrap2012/cage-teachpack",2171,71,44,10]),types.vector(["bootstrap2012/cage-teachpack",2162,71,35,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2162,71,35,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2163,71,36,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2172,71,45,4]),types.vector(["bootstrap2012/cage-teachpack",2177,71,50,1]),types.vector(["bootstrap2012/cage-teachpack",2179,71,52,1]),types.vector(["bootstrap2012/cage-teachpack",2171,71,44,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2171,71,44,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2172,71,45,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2093,70,23,90])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2209,72,24,4]),types.vector(["bootstrap2012/cage-teachpack",2214,72,29,1]),types.vector(["bootstrap2012/cage-teachpack",2216,72,31,1]),types.vector(["bootstrap2012/cage-teachpack",2208,72,23,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2208,72,23,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",2209,72,24,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1911,66,22,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1915,66,26,1]),types.vector(["bootstrap2012/cage-teachpack",1917,66,28,27]),types.vector(["bootstrap2012/cage-teachpack",1945,66,56,1]),types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":136,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1915,66,26,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",1918,66,29,15]),types.vector(["bootstrap2012/cage-teachpack",1934,66,45,9]),types.vector(["bootstrap2012/cage-teachpack",1917,66,28,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1917,66,28,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",1918,66,29,15])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",1914,66,25,33])}]}}},"then":{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",2008,68,25,6]),types.vector(["bootstrap2012/cage-teachpack",2016,68,33,1]),types.vector(["bootstrap2012/cage-teachpack",2018,68,35,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",2022,68,39,9]),types.vector(["bootstrap2012/cage-teachpack",2032,68,49,1]),types.vector(["bootstrap2012/cage-teachpack",2021,68,38,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",2021,68,38,13])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3129,112,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/cage-teachpack",3129,112,9,4]),types.vector(["bootstrap2012/cage-teachpack",3134,112,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3152,114,5,10]),types.vector(["bootstrap2012/cage-teachpack",3163,114,16,3]),types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3152,114,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3151,114,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3185,115,5,7]),types.vector(["bootstrap2012/cage-teachpack",3193,115,13,3]),types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3185,115,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3184,115,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3213,116,5,7]),types.vector(["bootstrap2012/cage-teachpack",3221,116,13,3]),types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3213,116,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3212,116,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3241,117,5,6]),types.vector(["bootstrap2012/cage-teachpack",3248,117,12,3]),types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3241,117,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3240,117,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3267,118,5,8]),types.vector(["bootstrap2012/cage-teachpack",3276,118,14,3]),types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3267,118,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3266,118,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3297,119,5,5]),types.vector(["bootstrap2012/cage-teachpack",3303,119,11,3]),types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3297,119,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3296,119,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3325,120,5,7]),types.vector(["bootstrap2012/cage-teachpack",3333,120,13,3]),types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3325,120,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3324,120,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3353,121,5,5]),types.vector(["bootstrap2012/cage-teachpack",3359,121,11,3]),types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3353,121,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3352,121,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3377,122,5,5]),types.vector(["bootstrap2012/cage-teachpack",3383,122,11,3]),types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3377,122,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3376,122,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3401,123,5,7]),types.vector(["bootstrap2012/cage-teachpack",3409,123,13,3]),types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3401,123,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3400,123,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4]),types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3431,124,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312]),types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312]),types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3141,113,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3920,135,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/cage-teachpack",3920,135,9,11]),types.vector(["bootstrap2012/cage-teachpack",3932,135,21,1]),types.vector(["bootstrap2012/cage-teachpack",3934,135,23,1]),types.vector(["bootstrap2012/cage-teachpack",3936,135,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3950,136,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3955,136,8,1]),types.vector(["bootstrap2012/cage-teachpack",3957,136,10,41]),types.vector(["bootstrap2012/cage-teachpack",3999,136,52,9]),types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3955,136,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3958,136,11,3]),types.vector(["bootstrap2012/cage-teachpack",3962,136,15,35]),types.vector(["bootstrap2012/cage-teachpack",3957,136,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3957,136,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3958,136,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3963,136,16,1]),types.vector(["bootstrap2012/cage-teachpack",3965,136,18,15]),types.vector(["bootstrap2012/cage-teachpack",3981,136,34,15]),types.vector(["bootstrap2012/cage-teachpack",3962,136,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3962,136,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3963,136,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3966,136,19,9]),types.vector(["bootstrap2012/cage-teachpack",3978,136,31,1]),types.vector(["bootstrap2012/cage-teachpack",3965,136,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3965,136,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3966,136,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",3982,136,35,9]),types.vector(["bootstrap2012/cage-teachpack",3994,136,47,1]),types.vector(["bootstrap2012/cage-teachpack",3981,136,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3981,136,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",3982,136,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3954,136,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3950,136,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4018,137,8,1]),types.vector(["bootstrap2012/cage-teachpack",4020,137,10,41]),types.vector(["bootstrap2012/cage-teachpack",4062,137,52,9]),types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4018,137,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4021,137,11,3]),types.vector(["bootstrap2012/cage-teachpack",4025,137,15,35]),types.vector(["bootstrap2012/cage-teachpack",4020,137,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4020,137,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4021,137,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4026,137,16,1]),types.vector(["bootstrap2012/cage-teachpack",4028,137,18,15]),types.vector(["bootstrap2012/cage-teachpack",4044,137,34,15]),types.vector(["bootstrap2012/cage-teachpack",4025,137,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4025,137,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4026,137,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4029,137,19,11]),types.vector(["bootstrap2012/cage-teachpack",4041,137,31,1]),types.vector(["bootstrap2012/cage-teachpack",4028,137,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4028,137,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4029,137,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4045,137,35,11]),types.vector(["bootstrap2012/cage-teachpack",4057,137,47,1]),types.vector(["bootstrap2012/cage-teachpack",4044,137,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4044,137,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4045,137,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4017,137,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3950,136,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4081,138,8,1]),types.vector(["bootstrap2012/cage-teachpack",4083,138,10,41]),types.vector(["bootstrap2012/cage-teachpack",4125,138,52,9]),types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4081,138,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4084,138,11,3]),types.vector(["bootstrap2012/cage-teachpack",4088,138,15,35]),types.vector(["bootstrap2012/cage-teachpack",4083,138,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4083,138,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4084,138,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4089,138,16,1]),types.vector(["bootstrap2012/cage-teachpack",4091,138,18,15]),types.vector(["bootstrap2012/cage-teachpack",4107,138,34,15]),types.vector(["bootstrap2012/cage-teachpack",4088,138,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4088,138,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4089,138,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4092,138,19,10]),types.vector(["bootstrap2012/cage-teachpack",4104,138,31,1]),types.vector(["bootstrap2012/cage-teachpack",4091,138,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4091,138,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4092,138,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4108,138,35,10]),types.vector(["bootstrap2012/cage-teachpack",4120,138,47,1]),types.vector(["bootstrap2012/cage-teachpack",4107,138,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4107,138,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4108,138,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4080,138,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",3950,136,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4144,139,8,1]),types.vector(["bootstrap2012/cage-teachpack",4146,139,10,41]),types.vector(["bootstrap2012/cage-teachpack",4188,139,52,9]),types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4144,139,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4147,139,11,3]),types.vector(["bootstrap2012/cage-teachpack",4151,139,15,35]),types.vector(["bootstrap2012/cage-teachpack",4146,139,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4146,139,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":138,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4147,139,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4152,139,16,1]),types.vector(["bootstrap2012/cage-teachpack",4154,139,18,15]),types.vector(["bootstrap2012/cage-teachpack",4170,139,34,15]),types.vector(["bootstrap2012/cage-teachpack",4151,139,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4151,139,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4152,139,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4155,139,19,11]),types.vector(["bootstrap2012/cage-teachpack",4167,139,31,1]),types.vector(["bootstrap2012/cage-teachpack",4154,139,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4154,139,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4155,139,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4171,139,35,11]),types.vector(["bootstrap2012/cage-teachpack",4183,139,47,1]),types.vector(["bootstrap2012/cage-teachpack",4170,139,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4170,139,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4171,139,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4143,139,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4293,143,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/cage-teachpack",4293,143,9,7]),types.vector(["bootstrap2012/cage-teachpack",4301,143,17,1]),types.vector(["bootstrap2012/cage-teachpack",4303,143,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4309,144,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4314,144,8,6]),types.vector(["bootstrap2012/cage-teachpack",4321,144,15,15]),types.vector(["bootstrap2012/cage-teachpack",4337,144,31,15]),types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4314,144,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4322,144,16,9]),types.vector(["bootstrap2012/cage-teachpack",4334,144,28,1]),types.vector(["bootstrap2012/cage-teachpack",4321,144,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4321,144,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4322,144,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4338,144,32,9]),types.vector(["bootstrap2012/cage-teachpack",4350,144,44,1]),types.vector(["bootstrap2012/cage-teachpack",4337,144,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4337,144,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4338,144,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4313,144,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4309,144,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4362,145,8,6]),types.vector(["bootstrap2012/cage-teachpack",4369,145,15,15]),types.vector(["bootstrap2012/cage-teachpack",4385,145,31,15]),types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4362,145,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4370,145,16,11]),types.vector(["bootstrap2012/cage-teachpack",4382,145,28,1]),types.vector(["bootstrap2012/cage-teachpack",4369,145,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4369,145,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4370,145,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4386,145,32,11]),types.vector(["bootstrap2012/cage-teachpack",4398,145,44,1]),types.vector(["bootstrap2012/cage-teachpack",4385,145,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4385,145,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4386,145,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4361,145,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4309,144,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4410,146,8,6]),types.vector(["bootstrap2012/cage-teachpack",4417,146,15,15]),types.vector(["bootstrap2012/cage-teachpack",4433,146,31,15]),types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4410,146,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4418,146,16,10]),types.vector(["bootstrap2012/cage-teachpack",4430,146,28,1]),types.vector(["bootstrap2012/cage-teachpack",4417,146,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4417,146,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4418,146,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4434,146,32,10]),types.vector(["bootstrap2012/cage-teachpack",4446,146,44,1]),types.vector(["bootstrap2012/cage-teachpack",4433,146,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4433,146,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4434,146,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4409,146,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4309,144,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4458,147,8,6]),types.vector(["bootstrap2012/cage-teachpack",4465,147,15,15]),types.vector(["bootstrap2012/cage-teachpack",4481,147,31,15]),types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4458,147,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4466,147,16,11]),types.vector(["bootstrap2012/cage-teachpack",4478,147,28,1]),types.vector(["bootstrap2012/cage-teachpack",4465,147,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4465,147,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4466,147,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",4482,147,32,11]),types.vector(["bootstrap2012/cage-teachpack",4494,147,44,1]),types.vector(["bootstrap2012/cage-teachpack",4481,147,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4481,147,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",4482,147,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",4457,147,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5046,160,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5046,160,9,10]),types.vector(["bootstrap2012/cage-teachpack",5057,160,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5073,162,5,7]),types.vector(["bootstrap2012/cage-teachpack",5081,162,13,1]),types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5073,162,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5072,162,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5089,163,5,11]),types.vector(["bootstrap2012/cage-teachpack",5101,163,17,1]),types.vector(["bootstrap2012/cage-teachpack",5088,163,4,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5088,163,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5089,163,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4]),types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])},{"$":"toplevel","depth":4,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5109,164,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59]),types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59]),types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5062,161,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5134,168,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5134,168,9,15]),types.vector(["bootstrap2012/cage-teachpack",5150,168,25,1]),types.vector(["bootstrap2012/cage-teachpack",5152,168,27,1]),types.vector(["bootstrap2012/cage-teachpack",5154,168,29,1]),types.vector(["bootstrap2012/cage-teachpack",5156,168,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5162,169,3,1]),types.vector(["bootstrap2012/cage-teachpack",5164,169,5,7]),types.vector(["bootstrap2012/cage-teachpack",5172,169,13,1]),types.vector(["bootstrap2012/cage-teachpack",5161,169,2,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5161,169,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5162,169,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5165,169,6,1]),types.vector(["bootstrap2012/cage-teachpack",5167,169,8,1]),types.vector(["bootstrap2012/cage-teachpack",5169,169,10,1]),types.vector(["bootstrap2012/cage-teachpack",5164,169,5,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5164,169,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5165,169,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5186,171,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5186,171,9,22]),types.vector(["bootstrap2012/cage-teachpack",5209,171,32,6]),types.vector(["bootstrap2012/cage-teachpack",5216,171,39,3]),types.vector(["bootstrap2012/cage-teachpack",5220,171,43,5]),types.vector(["bootstrap2012/cage-teachpack",5226,171,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5236,172,2,345]),types.vector(["bootstrap2012/cage-teachpack",5245,172,11,21]),types.vector(["bootstrap2012/cage-teachpack",5279,173,11,21]),types.vector(["bootstrap2012/cage-teachpack",5315,174,13,49]),types.vector(["bootstrap2012/cage-teachpack",5236,172,2,345])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5236,172,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",5236,172,2,345]),types.vector(["bootstrap2012/cage-teachpack",5243,172,9,1]),types.vector(["bootstrap2012/cage-teachpack",5277,173,9,1]),types.vector(["bootstrap2012/cage-teachpack",5311,174,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5372,175,5,6]),types.vector(["bootstrap2012/cage-teachpack",5384,176,5,39]),types.vector(["bootstrap2012/cage-teachpack",5429,177,5,39]),types.vector(["bootstrap2012/cage-teachpack",5474,178,5,49]),types.vector(["bootstrap2012/cage-teachpack",5529,179,5,50]),types.vector(["bootstrap2012/cage-teachpack",5371,175,4,209])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5371,175,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5372,175,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5385,176,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5389,176,10,1]),types.vector(["bootstrap2012/cage-teachpack",5391,176,12,1]),types.vector(["bootstrap2012/cage-teachpack",5393,176,14,1]),types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5389,176,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5388,176,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5397,176,18,4]),types.vector(["bootstrap2012/cage-teachpack",5402,176,23,15]),types.vector(["bootstrap2012/cage-teachpack",5396,176,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5396,176,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5397,176,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5403,176,24,3]),types.vector(["bootstrap2012/cage-teachpack",5407,176,28,7]),types.vector(["bootstrap2012/cage-teachpack",5415,176,36,1]),types.vector(["bootstrap2012/cage-teachpack",5402,176,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5402,176,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5408,176,29,1]),types.vector(["bootstrap2012/cage-teachpack",5410,176,31,1]),types.vector(["bootstrap2012/cage-teachpack",5412,176,33,1]),types.vector(["bootstrap2012/cage-teachpack",5407,176,28,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5407,176,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5408,176,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5430,177,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5434,177,10,1]),types.vector(["bootstrap2012/cage-teachpack",5436,177,12,1]),types.vector(["bootstrap2012/cage-teachpack",5438,177,14,1]),types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5434,177,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5433,177,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5442,177,18,4]),types.vector(["bootstrap2012/cage-teachpack",5447,177,23,15]),types.vector(["bootstrap2012/cage-teachpack",5441,177,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5441,177,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5442,177,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5448,177,24,3]),types.vector(["bootstrap2012/cage-teachpack",5452,177,28,1]),types.vector(["bootstrap2012/cage-teachpack",5454,177,30,7]),types.vector(["bootstrap2012/cage-teachpack",5447,177,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5447,177,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5455,177,31,1]),types.vector(["bootstrap2012/cage-teachpack",5457,177,33,1]),types.vector(["bootstrap2012/cage-teachpack",5459,177,35,1]),types.vector(["bootstrap2012/cage-teachpack",5454,177,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5454,177,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5455,177,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5475,178,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5479,178,10,1]),types.vector(["bootstrap2012/cage-teachpack",5481,178,12,1]),types.vector(["bootstrap2012/cage-teachpack",5483,178,14,11]),types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5479,178,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5484,178,15,1]),types.vector(["bootstrap2012/cage-teachpack",5486,178,17,5]),types.vector(["bootstrap2012/cage-teachpack",5492,178,23,1]),types.vector(["bootstrap2012/cage-teachpack",5483,178,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5483,178,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5484,178,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5478,178,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5497,178,28,4]),types.vector(["bootstrap2012/cage-teachpack",5502,178,33,15]),types.vector(["bootstrap2012/cage-teachpack",5496,178,27,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5496,178,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5497,178,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5503,178,34,3]),types.vector(["bootstrap2012/cage-teachpack",5507,178,38,7]),types.vector(["bootstrap2012/cage-teachpack",5515,178,46,1]),types.vector(["bootstrap2012/cage-teachpack",5502,178,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5502,178,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5508,178,39,1]),types.vector(["bootstrap2012/cage-teachpack",5510,178,41,1]),types.vector(["bootstrap2012/cage-teachpack",5512,178,43,1]),types.vector(["bootstrap2012/cage-teachpack",5507,178,38,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5507,178,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5508,178,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5530,179,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5534,179,10,1]),types.vector(["bootstrap2012/cage-teachpack",5536,179,12,1]),types.vector(["bootstrap2012/cage-teachpack",5538,179,14,12]),types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":142,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5534,179,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5539,179,15,1]),types.vector(["bootstrap2012/cage-teachpack",5541,179,17,6]),types.vector(["bootstrap2012/cage-teachpack",5548,179,24,1]),types.vector(["bootstrap2012/cage-teachpack",5538,179,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5538,179,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5539,179,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5533,179,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5553,179,29,4]),types.vector(["bootstrap2012/cage-teachpack",5558,179,34,15]),types.vector(["bootstrap2012/cage-teachpack",5552,179,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5552,179,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5553,179,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5559,179,35,3]),types.vector(["bootstrap2012/cage-teachpack",5563,179,39,1]),types.vector(["bootstrap2012/cage-teachpack",5565,179,41,7]),types.vector(["bootstrap2012/cage-teachpack",5558,179,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5558,179,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5566,179,42,1]),types.vector(["bootstrap2012/cage-teachpack",5568,179,44,1]),types.vector(["bootstrap2012/cage-teachpack",5570,179,46,1]),types.vector(["bootstrap2012/cage-teachpack",5565,179,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5565,179,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":143,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5566,179,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5246,172,12,9]),types.vector(["bootstrap2012/cage-teachpack",5256,172,22,3]),types.vector(["bootstrap2012/cage-teachpack",5260,172,26,5]),types.vector(["bootstrap2012/cage-teachpack",5245,172,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5245,172,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5246,172,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5280,173,12,5]),types.vector(["bootstrap2012/cage-teachpack",5286,173,18,13]),types.vector(["bootstrap2012/cage-teachpack",5279,173,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5279,173,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5280,173,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5287,173,19,1]),types.vector(["bootstrap2012/cage-teachpack",5289,173,21,3]),types.vector(["bootstrap2012/cage-teachpack",5293,173,25,5]),types.vector(["bootstrap2012/cage-teachpack",5286,173,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5286,173,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5287,173,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",5316,174,14,6]),types.vector(["bootstrap2012/cage-teachpack",5324,174,22,1]),types.vector(["bootstrap2012/cage-teachpack",5326,174,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5330,174,28,15]),types.vector(["bootstrap2012/cage-teachpack",5346,174,44,1]),types.vector(["bootstrap2012/cage-teachpack",5348,174,46,1]),types.vector(["bootstrap2012/cage-teachpack",5350,174,48,5]),types.vector(["bootstrap2012/cage-teachpack",5356,174,54,6]),types.vector(["bootstrap2012/cage-teachpack",5329,174,27,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5329,174,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5330,174,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5593,181,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5593,181,9,22]),types.vector(["bootstrap2012/cage-teachpack",5616,181,32,6]),types.vector(["bootstrap2012/cage-teachpack",5623,181,39,5]),types.vector(["bootstrap2012/cage-teachpack",5629,181,45,6]),types.vector(["bootstrap2012/cage-teachpack",5636,181,52,7]),types.vector(["bootstrap2012/cage-teachpack",5644,181,60,7]),types.vector(["bootstrap2012/cage-teachpack",5652,181,68,11]),types.vector(["bootstrap2012/cage-teachpack",5664,181,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5677,182,2,973]),types.vector(["bootstrap2012/cage-teachpack",5690,182,15,53]),types.vector(["bootstrap2012/cage-teachpack",5759,183,14,11]),types.vector(["bootstrap2012/cage-teachpack",5786,184,14,3]),types.vector(["bootstrap2012/cage-teachpack",5677,182,2,973])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5677,182,2,973])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",5677,182,2,973]),types.vector(["bootstrap2012/cage-teachpack",5684,182,9,5]),types.vector(["bootstrap2012/cage-teachpack",5754,183,9,4]),types.vector(["bootstrap2012/cage-teachpack",5781,184,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/cage-teachpack",5819,186,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5876,188,25,3]),types.vector(["bootstrap2012/cage-teachpack",5880,188,29,14]),types.vector(["bootstrap2012/cage-teachpack",5875,188,24,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5875,188,24,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5876,188,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5881,188,30,6]),types.vector(["bootstrap2012/cage-teachpack",5888,188,37,5]),types.vector(["bootstrap2012/cage-teachpack",5880,188,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5880,188,29,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5881,188,30,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5916,189,20,701]),types.vector(["bootstrap2012/cage-teachpack",5926,189,30,11]),types.vector(["bootstrap2012/cage-teachpack",5916,189,20,701])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5916,189,20,701])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",5916,189,20,701]),types.vector(["bootstrap2012/cage-teachpack",5923,189,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5994,191,25,4]),types.vector(["bootstrap2012/cage-teachpack",5999,191,30,5]),types.vector(["bootstrap2012/cage-teachpack",6005,191,36,11]),types.vector(["bootstrap2012/cage-teachpack",5993,191,24,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5993,191,24,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5994,191,25,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6006,191,37,3]),types.vector(["bootstrap2012/cage-teachpack",6010,191,41,5]),types.vector(["bootstrap2012/cage-teachpack",6005,191,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6005,191,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6006,191,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6049,192,31,3]),types.vector(["bootstrap2012/cage-teachpack",6053,192,35,21]),types.vector(["bootstrap2012/cage-teachpack",6048,192,30,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6048,192,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6049,192,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6054,192,36,8]),types.vector(["bootstrap2012/cage-teachpack",6063,192,45,4]),types.vector(["bootstrap2012/cage-teachpack",6068,192,50,2]),types.vector(["bootstrap2012/cage-teachpack",6071,192,53,2]),types.vector(["bootstrap2012/cage-teachpack",6053,192,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6053,192,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6054,192,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6138,194,29,9]),types.vector(["bootstrap2012/cage-teachpack",6148,194,39,4]),types.vector(["bootstrap2012/cage-teachpack",6153,194,44,2]),types.vector(["bootstrap2012/cage-teachpack",6156,194,47,2]),types.vector(["bootstrap2012/cage-teachpack",6137,194,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6137,194,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6138,194,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6189,195,29,4]),types.vector(["bootstrap2012/cage-teachpack",6194,195,34,4]),types.vector(["bootstrap2012/cage-teachpack",6199,195,39,14]),types.vector(["bootstrap2012/cage-teachpack",6188,195,28,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6188,195,28,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6189,195,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6200,195,40,4]),types.vector(["bootstrap2012/cage-teachpack",6205,195,45,2]),types.vector(["bootstrap2012/cage-teachpack",6208,195,48,4]),types.vector(["bootstrap2012/cage-teachpack",6199,195,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6199,195,39,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6200,195,40,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6244,196,29,4]),types.vector(["bootstrap2012/cage-teachpack",6249,196,34,5]),types.vector(["bootstrap2012/cage-teachpack",6290,197,34,291]),types.vector(["bootstrap2012/cage-teachpack",6243,196,28,339])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6243,196,28,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6244,196,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6291,197,35,6]),types.vector(["bootstrap2012/cage-teachpack",6298,197,42,5]),types.vector(["bootstrap2012/cage-teachpack",6346,198,42,234]),types.vector(["bootstrap2012/cage-teachpack",6290,197,34,291])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6290,197,34,291])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":137,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6291,197,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6347,198,43,6]),types.vector(["bootstrap2012/cage-teachpack",6354,198,50,127]),types.vector(["bootstrap2012/cage-teachpack",6532,200,50,47]),types.vector(["bootstrap2012/cage-teachpack",6346,198,42,234])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6346,198,42,234])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6347,198,43,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6355,198,51,6]),types.vector(["bootstrap2012/cage-teachpack",6363,198,59,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6,8,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6422,199,53,11]),types.vector(["bootstrap2012/cage-teachpack",6434,199,65,23]),types.vector(["bootstrap2012/cage-teachpack",6458,199,89,11]),types.vector(["bootstrap2012/cage-teachpack",6470,199,101,9]),types.vector(["bootstrap2012/cage-teachpack",6421,199,52,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6421,199,52,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6422,199,53,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6435,199,66,10]),types.vector(["bootstrap2012/cage-teachpack",6446,199,77,6]),types.vector(["bootstrap2012/cage-teachpack",6453,199,84,3]),types.vector(["bootstrap2012/cage-teachpack",6434,199,65,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6434,199,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6435,199,66,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6533,200,51,22]),types.vector(["bootstrap2012/cage-teachpack",6556,200,74,6]),types.vector(["bootstrap2012/cage-teachpack",6563,200,81,2]),types.vector(["bootstrap2012/cage-teachpack",6566,200,84,5]),types.vector(["bootstrap2012/cage-teachpack",6572,200,90,6]),types.vector(["bootstrap2012/cage-teachpack",6532,200,50,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6532,200,50,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6533,200,51,22])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6042,192,24,542]),types.vector(["bootstrap2012/cage-teachpack",6042,192,24,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6042,192,24,542])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6042,192,24,542])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6610,201,25,4]),types.vector(["bootstrap2012/cage-teachpack",6609,201,24,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6609,201,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5927,189,31,3]),types.vector(["bootstrap2012/cage-teachpack",5931,189,35,5]),types.vector(["bootstrap2012/cage-teachpack",5926,189,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5926,189,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5927,189,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5869,188,18,749]),types.vector(["bootstrap2012/cage-teachpack",5869,188,18,749])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5869,188,18,749])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5869,188,18,749])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6631,202,9,4]),types.vector(["bootstrap2012/cage-teachpack",6630,202,8,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6630,202,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5691,182,16,4]),types.vector(["bootstrap2012/cage-teachpack",5696,182,21,46]),types.vector(["bootstrap2012/cage-teachpack",5690,182,15,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5690,182,15,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5691,182,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5697,182,22,15]),types.vector(["bootstrap2012/cage-teachpack",5713,182,38,7]),types.vector(["bootstrap2012/cage-teachpack",5721,182,46,7]),types.vector(["bootstrap2012/cage-teachpack",5729,182,54,5]),types.vector(["bootstrap2012/cage-teachpack",5735,182,60,6]),types.vector(["bootstrap2012/cage-teachpack",5696,182,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5696,182,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5697,182,22,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",5760,183,15,9]),types.vector(["bootstrap2012/cage-teachpack",5759,183,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",5759,183,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",5760,183,15,9])},"rands":[]}}},{"$":"constant","value":types.EMPTY}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6662,205,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/cage-teachpack",6662,205,9,16]),types.vector(["bootstrap2012/cage-teachpack",6679,205,26,3]),types.vector(["bootstrap2012/cage-teachpack",6683,205,30,7]),types.vector(["bootstrap2012/cage-teachpack",6691,205,38,7]),types.vector(["bootstrap2012/cage-teachpack",6699,205,46,12]),types.vector(["bootstrap2012/cage-teachpack",6712,205,59,17]),types.vector(["bootstrap2012/cage-teachpack",6730,205,77,9]),types.vector(["bootstrap2012/cage-teachpack",6740,205,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6760,206,9,42]),types.vector(["bootstrap2012/cage-teachpack",6763,206,12,38]),types.vector(["bootstrap2012/cage-teachpack",6760,206,9,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6760,206,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6760,206,9,42]),types.vector(["bootstrap2012/cage-teachpack",6761,206,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6812,207,9,25]),types.vector(["bootstrap2012/cage-teachpack",6819,207,16,17]),types.vector(["bootstrap2012/cage-teachpack",6812,207,9,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6812,207,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6812,207,9,25]),types.vector(["bootstrap2012/cage-teachpack",6813,207,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6847,208,9,27]),types.vector(["bootstrap2012/cage-teachpack",6855,208,17,18]),types.vector(["bootstrap2012/cage-teachpack",6847,208,9,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6847,208,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6847,208,9,27]),types.vector(["bootstrap2012/cage-teachpack",6848,208,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6884,209,9,142]),types.vector(["bootstrap2012/cage-teachpack",6887,209,12,138]),types.vector(["bootstrap2012/cage-teachpack",6884,209,9,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6884,209,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",6884,209,9,142]),types.vector(["bootstrap2012/cage-teachpack",6885,209,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7036,212,9,34]),types.vector(["bootstrap2012/cage-teachpack",7039,212,12,30]),types.vector(["bootstrap2012/cage-teachpack",7036,212,9,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7036,212,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",7036,212,9,34]),types.vector(["bootstrap2012/cage-teachpack",7037,212,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7096,214,13,3]),types.vector(["bootstrap2012/cage-teachpack",7100,214,17,13]),types.vector(["bootstrap2012/cage-teachpack",7095,214,12,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7095,214,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7096,214,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7101,214,18,7]),types.vector(["bootstrap2012/cage-teachpack",7109,214,26,1]),types.vector(["bootstrap2012/cage-teachpack",7111,214,28,1]),types.vector(["bootstrap2012/cage-teachpack",7100,214,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7100,214,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7101,214,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7124,215,9,8]),types.vector(["bootstrap2012/cage-teachpack",7133,215,18,36]),types.vector(["bootstrap2012/cage-teachpack",7188,216,18,67]),types.vector(["bootstrap2012/cage-teachpack",7123,215,8,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7123,215,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7124,215,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",7134,215,19,6]),types.vector(["bootstrap2012/cage-teachpack",7142,215,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7148,215,33,11]),types.vector(["bootstrap2012/cage-teachpack",7160,215,45,1]),types.vector(["bootstrap2012/cage-teachpack",7162,215,47,3]),types.vector(["bootstrap2012/cage-teachpack",7166,215,51,1]),types.vector(["bootstrap2012/cage-teachpack",7147,215,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7147,215,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7148,215,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7189,216,19,22]),types.vector(["bootstrap2012/cage-teachpack",7212,216,42,1]),types.vector(["bootstrap2012/cage-teachpack",7214,216,44,5]),types.vector(["bootstrap2012/cage-teachpack",7220,216,50,6]),types.vector(["bootstrap2012/cage-teachpack",7227,216,57,7]),types.vector(["bootstrap2012/cage-teachpack",7235,216,65,7]),types.vector(["bootstrap2012/cage-teachpack",7243,216,73,1]),types.vector(["bootstrap2012/cage-teachpack",7245,216,75,9]),types.vector(["bootstrap2012/cage-teachpack",7188,216,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7188,216,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7189,216,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7089,214,6,168]),types.vector(["bootstrap2012/cage-teachpack",7089,214,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7089,214,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7089,214,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7265,217,7,18]),types.vector(["bootstrap2012/cage-teachpack",7284,217,26,16]),types.vector(["bootstrap2012/cage-teachpack",7301,217,43,5]),types.vector(["bootstrap2012/cage-teachpack",7307,217,49,6]),types.vector(["bootstrap2012/cage-teachpack",7264,217,6,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7264,217,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7265,217,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7285,217,27,12]),types.vector(["bootstrap2012/cage-teachpack",7298,217,40,1]),types.vector(["bootstrap2012/cage-teachpack",7284,217,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7284,217,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7285,217,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7040,212,13,10]),types.vector(["bootstrap2012/cage-teachpack",7051,212,24,17]),types.vector(["bootstrap2012/cage-teachpack",7039,212,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7039,212,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7040,212,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12]),types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6888,209,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6891,209,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6922,210,17,10]),types.vector(["bootstrap2012/cage-teachpack",6933,210,28,12]),types.vector(["bootstrap2012/cage-teachpack",6921,210,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6921,210,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6922,210,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6964,211,17,10]),types.vector(["bootstrap2012/cage-teachpack",6975,211,28,1]),types.vector(["bootstrap2012/cage-teachpack",6977,211,30,46]),types.vector(["bootstrap2012/cage-teachpack",6963,211,16,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6963,211,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6964,211,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6978,211,31,15]),types.vector(["bootstrap2012/cage-teachpack",6994,211,47,7]),types.vector(["bootstrap2012/cage-teachpack",7002,211,55,7]),types.vector(["bootstrap2012/cage-teachpack",7010,211,63,5]),types.vector(["bootstrap2012/cage-teachpack",7016,211,69,6]),types.vector(["bootstrap2012/cage-teachpack",6977,211,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6977,211,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6978,211,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6856,208,18,12]),types.vector(["bootstrap2012/cage-teachpack",6869,208,31,3]),types.vector(["bootstrap2012/cage-teachpack",6855,208,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6855,208,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6856,208,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6820,207,17,11]),types.vector(["bootstrap2012/cage-teachpack",6832,207,29,3]),types.vector(["bootstrap2012/cage-teachpack",6819,207,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6819,207,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6820,207,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6764,206,13,12]),types.vector(["bootstrap2012/cage-teachpack",6777,206,26,23]),types.vector(["bootstrap2012/cage-teachpack",6763,206,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6763,206,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6764,206,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",6778,206,27,17]),types.vector(["bootstrap2012/cage-teachpack",6796,206,45,3]),types.vector(["bootstrap2012/cage-teachpack",6777,206,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",6777,206,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",6778,206,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7328,219,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/cage-teachpack",7328,219,9,23]),types.vector(["bootstrap2012/cage-teachpack",7352,219,33,3]),types.vector(["bootstrap2012/cage-teachpack",7356,219,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7370,220,3,16]),types.vector(["bootstrap2012/cage-teachpack",7387,220,20,3]),types.vector(["bootstrap2012/cage-teachpack",7391,220,24,1]),types.vector(["bootstrap2012/cage-teachpack",7393,220,26,1]),types.vector(["bootstrap2012/cage-teachpack",7395,220,28,2]),types.vector(["bootstrap2012/cage-teachpack",7398,220,31,20]),types.vector(["bootstrap2012/cage-teachpack",7419,220,52,9]),types.vector(["bootstrap2012/cage-teachpack",7429,220,62,1]),types.vector(["bootstrap2012/cage-teachpack",7369,220,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7369,220,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7370,220,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7399,220,32,10]),types.vector(["bootstrap2012/cage-teachpack",7410,220,43,1]),types.vector(["bootstrap2012/cage-teachpack",7412,220,45,1]),types.vector(["bootstrap2012/cage-teachpack",7414,220,47,1]),types.vector(["bootstrap2012/cage-teachpack",7416,220,49,1]),types.vector(["bootstrap2012/cage-teachpack",7398,220,31,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7398,220,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7399,220,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7442,221,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/cage-teachpack",7442,221,9,24]),types.vector(["bootstrap2012/cage-teachpack",7467,221,34,3]),types.vector(["bootstrap2012/cage-teachpack",7471,221,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7484,222,2,442]),types.vector(["bootstrap2012/cage-teachpack",7496,222,14,20]),types.vector(["bootstrap2012/cage-teachpack",7539,223,21,2]),types.vector(["bootstrap2012/cage-teachpack",7560,224,17,1]),types.vector(["bootstrap2012/cage-teachpack",7576,225,13,23]),types.vector(["bootstrap2012/cage-teachpack",7614,226,13,24]),types.vector(["bootstrap2012/cage-teachpack",7484,222,2,442])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7484,222,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",7484,222,2,442]),types.vector(["bootstrap2012/cage-teachpack",7491,222,9,4]),types.vector(["bootstrap2012/cage-teachpack",7527,223,9,11]),types.vector(["bootstrap2012/cage-teachpack",7552,224,9,7]),types.vector(["bootstrap2012/cage-teachpack",7572,225,9,3]),types.vector(["bootstrap2012/cage-teachpack",7610,226,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7646,227,5,16]),types.vector(["bootstrap2012/cage-teachpack",7669,228,5,207]),types.vector(["bootstrap2012/cage-teachpack",7882,233,5,3]),types.vector(["bootstrap2012/cage-teachpack",7886,233,9,3]),types.vector(["bootstrap2012/cage-teachpack",7890,233,13,11]),types.vector(["bootstrap2012/cage-teachpack",7902,233,25,4]),types.vector(["bootstrap2012/cage-teachpack",7907,233,30,9]),types.vector(["bootstrap2012/cage-teachpack",7917,233,40,7]),types.vector(["bootstrap2012/cage-teachpack",7645,227,4,280])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7645,227,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7646,227,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7670,228,6,16]),types.vector(["bootstrap2012/cage-teachpack",7693,229,6,135]),types.vector(["bootstrap2012/cage-teachpack",7835,232,6,1]),types.vector(["bootstrap2012/cage-teachpack",7837,232,8,3]),types.vector(["bootstrap2012/cage-teachpack",7841,232,12,11]),types.vector(["bootstrap2012/cage-teachpack",7853,232,24,4]),types.vector(["bootstrap2012/cage-teachpack",7858,232,29,9]),types.vector(["bootstrap2012/cage-teachpack",7868,232,39,7]),types.vector(["bootstrap2012/cage-teachpack",7669,228,5,207])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7669,228,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7670,228,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7694,229,7,16]),types.vector(["bootstrap2012/cage-teachpack",7718,230,7,61]),types.vector(["bootstrap2012/cage-teachpack",7787,231,7,3]),types.vector(["bootstrap2012/cage-teachpack",7791,231,11,1]),types.vector(["bootstrap2012/cage-teachpack",7793,231,13,11]),types.vector(["bootstrap2012/cage-teachpack",7805,231,25,4]),types.vector(["bootstrap2012/cage-teachpack",7810,231,30,9]),types.vector(["bootstrap2012/cage-teachpack",7820,231,40,7]),types.vector(["bootstrap2012/cage-teachpack",7693,229,6,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7693,229,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7694,229,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7719,230,8,16]),types.vector(["bootstrap2012/cage-teachpack",7736,230,25,3]),types.vector(["bootstrap2012/cage-teachpack",7740,230,29,1]),types.vector(["bootstrap2012/cage-teachpack",7742,230,31,1]),types.vector(["bootstrap2012/cage-teachpack",7744,230,33,11]),types.vector(["bootstrap2012/cage-teachpack",7756,230,45,4]),types.vector(["bootstrap2012/cage-teachpack",7761,230,50,9]),types.vector(["bootstrap2012/cage-teachpack",7771,230,60,7]),types.vector(["bootstrap2012/cage-teachpack",7718,230,7,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7718,230,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7719,230,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7497,222,15,10]),types.vector(["bootstrap2012/cage-teachpack",7508,222,26,1]),types.vector(["bootstrap2012/cage-teachpack",7510,222,28,1]),types.vector(["bootstrap2012/cage-teachpack",7512,222,30,1]),types.vector(["bootstrap2012/cage-teachpack",7514,222,32,1]),types.vector(["bootstrap2012/cage-teachpack",7496,222,14,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7496,222,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7497,222,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7577,225,14,1]),types.vector(["bootstrap2012/cage-teachpack",7579,225,16,17]),types.vector(["bootstrap2012/cage-teachpack",7597,225,34,1]),types.vector(["bootstrap2012/cage-teachpack",7576,225,13,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7576,225,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7577,225,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7580,225,17,11]),types.vector(["bootstrap2012/cage-teachpack",7592,225,29,3]),types.vector(["bootstrap2012/cage-teachpack",7579,225,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7579,225,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7580,225,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7615,226,14,1]),types.vector(["bootstrap2012/cage-teachpack",7617,226,16,18]),types.vector(["bootstrap2012/cage-teachpack",7636,226,35,1]),types.vector(["bootstrap2012/cage-teachpack",7614,226,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7614,226,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7615,226,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",7618,226,17,12]),types.vector(["bootstrap2012/cage-teachpack",7631,226,30,3]),types.vector(["bootstrap2012/cage-teachpack",7617,226,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",7617,226,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",7618,226,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8095,238,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/cage-teachpack",8095,238,9,13]),types.vector(["bootstrap2012/cage-teachpack",8109,238,23,3]),types.vector(["bootstrap2012/cage-teachpack",8113,238,27,12]),types.vector(["bootstrap2012/cage-teachpack",8126,238,40,17]),types.vector(["bootstrap2012/cage-teachpack",8144,238,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8157,239,2,299]),types.vector(["bootstrap2012/cage-teachpack",8168,239,13,25]),types.vector(["bootstrap2012/cage-teachpack",8208,240,13,30]),types.vector(["bootstrap2012/cage-teachpack",8157,239,2,299])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8157,239,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",8157,239,2,299]),types.vector(["bootstrap2012/cage-teachpack",8164,239,9,3]),types.vector(["bootstrap2012/cage-teachpack",8204,240,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8246,241,5,18]),types.vector(["bootstrap2012/cage-teachpack",8270,242,5,137]),types.vector(["bootstrap2012/cage-teachpack",8413,247,5,17]),types.vector(["bootstrap2012/cage-teachpack",8436,248,5,18]),types.vector(["bootstrap2012/cage-teachpack",8245,241,4,210])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8245,241,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8246,241,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8271,242,6,3]),types.vector(["bootstrap2012/cage-teachpack",8275,242,10,97]),types.vector(["bootstrap2012/cage-teachpack",8383,246,10,23]),types.vector(["bootstrap2012/cage-teachpack",8270,242,5,137])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8270,242,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8271,242,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",8276,242,11,6]),types.vector(["bootstrap2012/cage-teachpack",8284,242,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8300,243,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8304,243,17,11]),types.vector(["bootstrap2012/cage-teachpack",8316,243,29,1]),types.vector(["bootstrap2012/cage-teachpack",8318,243,31,3]),types.vector(["bootstrap2012/cage-teachpack",8322,243,35,9]),types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8304,243,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8303,243,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8384,246,11,17]),types.vector(["bootstrap2012/cage-teachpack",8402,246,29,3]),types.vector(["bootstrap2012/cage-teachpack",8383,246,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8383,246,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8384,246,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8414,247,6,11]),types.vector(["bootstrap2012/cage-teachpack",8426,247,18,3]),types.vector(["bootstrap2012/cage-teachpack",8413,247,5,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8413,247,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8414,247,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8437,248,6,12]),types.vector(["bootstrap2012/cage-teachpack",8450,248,19,3]),types.vector(["bootstrap2012/cage-teachpack",8436,248,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8436,248,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8437,248,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8169,239,14,10]),types.vector(["bootstrap2012/cage-teachpack",8180,239,25,12]),types.vector(["bootstrap2012/cage-teachpack",8168,239,13,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8168,239,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8169,239,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8209,240,14,10]),types.vector(["bootstrap2012/cage-teachpack",8220,240,25,17]),types.vector(["bootstrap2012/cage-teachpack",8208,240,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8208,240,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8209,240,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8579,251,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/cage-teachpack",8579,251,9,12]),types.vector(["bootstrap2012/cage-teachpack",8592,251,22,3]),types.vector(["bootstrap2012/cage-teachpack",8596,251,26,12]),types.vector(["bootstrap2012/cage-teachpack",8609,251,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8623,252,3,13]),types.vector(["bootstrap2012/cage-teachpack",8637,252,17,3]),types.vector(["bootstrap2012/cage-teachpack",8641,252,21,12]),types.vector(["bootstrap2012/cage-teachpack",8654,252,34,20]),types.vector(["bootstrap2012/cage-teachpack",8675,252,55,9]),types.vector(["bootstrap2012/cage-teachpack",8622,252,2,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8622,252,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8623,252,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8655,252,35,10]),types.vector(["bootstrap2012/cage-teachpack",8666,252,46,1]),types.vector(["bootstrap2012/cage-teachpack",8668,252,48,1]),types.vector(["bootstrap2012/cage-teachpack",8670,252,50,1]),types.vector(["bootstrap2012/cage-teachpack",8672,252,52,1]),types.vector(["bootstrap2012/cage-teachpack",8654,252,34,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8654,252,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8655,252,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8822,256,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/cage-teachpack",8822,256,9,11]),types.vector(["bootstrap2012/cage-teachpack",8834,256,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8842,257,3,24]),types.vector(["bootstrap2012/cage-teachpack",8867,257,28,16]),types.vector(["bootstrap2012/cage-teachpack",8884,257,45,2]),types.vector(["bootstrap2012/cage-teachpack",8841,257,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8841,257,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8842,257,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8868,257,29,10]),types.vector(["bootstrap2012/cage-teachpack",8879,257,40,3]),types.vector(["bootstrap2012/cage-teachpack",8867,257,28,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8867,257,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8868,257,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8941,260,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/cage-teachpack",8941,260,9,12]),types.vector(["bootstrap2012/cage-teachpack",8954,260,22,3]),types.vector(["bootstrap2012/cage-teachpack",8958,260,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8967,261,3,10]),types.vector(["bootstrap2012/cage-teachpack",8978,261,14,3]),types.vector(["bootstrap2012/cage-teachpack",8982,261,18,27]),types.vector(["bootstrap2012/cage-teachpack",9010,261,46,17]),types.vector(["bootstrap2012/cage-teachpack",8966,261,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8966,261,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8967,261,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",8983,261,19,13]),types.vector(["bootstrap2012/cage-teachpack",8997,261,33,4]),types.vector(["bootstrap2012/cage-teachpack",9002,261,38,6]),types.vector(["bootstrap2012/cage-teachpack",8982,261,18,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",8982,261,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",8983,261,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9011,261,47,11]),types.vector(["bootstrap2012/cage-teachpack",9023,261,59,3]),types.vector(["bootstrap2012/cage-teachpack",9010,261,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9010,261,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9011,261,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9124,268,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9124,268,9,15]),types.vector(["bootstrap2012/cage-teachpack",9140,268,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1]),types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9146,269,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9149,269,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9280,273,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9280,273,9,14]),types.vector(["bootstrap2012/cage-teachpack",9295,273,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9301,274,3,13]),types.vector(["bootstrap2012/cage-teachpack",9315,274,17,19]),types.vector(["bootstrap2012/cage-teachpack",9300,274,2,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9300,274,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9301,274,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9316,274,18,15]),types.vector(["bootstrap2012/cage-teachpack",9332,274,34,1]),types.vector(["bootstrap2012/cage-teachpack",9315,274,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9315,274,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9316,274,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9425,280,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9425,280,9,13]),types.vector(["bootstrap2012/cage-teachpack",9439,280,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9445,281,3,4]),types.vector(["bootstrap2012/cage-teachpack",9450,281,8,1]),types.vector(["bootstrap2012/cage-teachpack",9452,281,10,2]),types.vector(["bootstrap2012/cage-teachpack",9455,281,13,6]),types.vector(["bootstrap2012/cage-teachpack",9444,281,2,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9444,281,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9445,281,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9550,285,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9550,285,9,13]),types.vector(["bootstrap2012/cage-teachpack",9564,285,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9570,286,3,13]),types.vector(["bootstrap2012/cage-teachpack",9584,286,17,18]),types.vector(["bootstrap2012/cage-teachpack",9569,286,2,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9569,286,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9570,286,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9585,286,18,14]),types.vector(["bootstrap2012/cage-teachpack",9600,286,33,1]),types.vector(["bootstrap2012/cage-teachpack",9584,286,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9584,286,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9585,286,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9771,292,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/cage-teachpack",9771,292,9,10]),types.vector(["bootstrap2012/cage-teachpack",9782,292,20,10]),types.vector(["bootstrap2012/cage-teachpack",9793,292,31,1]),types.vector(["bootstrap2012/cage-teachpack",9795,292,33,1]),types.vector(["bootstrap2012/cage-teachpack",9797,292,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9812,293,3,10]),types.vector(["bootstrap2012/cage-teachpack",9823,293,14,10]),types.vector(["bootstrap2012/cage-teachpack",9834,293,25,1]),types.vector(["bootstrap2012/cage-teachpack",9836,293,27,7]),types.vector(["bootstrap2012/cage-teachpack",9844,293,35,10]),types.vector(["bootstrap2012/cage-teachpack",9811,293,2,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9811,293,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9812,293,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",9837,293,28,1]),types.vector(["bootstrap2012/cage-teachpack",9839,293,30,1]),types.vector(["bootstrap2012/cage-teachpack",9841,293,32,1]),types.vector(["bootstrap2012/cage-teachpack",9836,293,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",9836,293,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",9837,293,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10024,298,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10024,298,9,9]),types.vector(["bootstrap2012/cage-teachpack",10034,298,19,10]),types.vector(["bootstrap2012/cage-teachpack",10045,298,30,1]),types.vector(["bootstrap2012/cage-teachpack",10047,298,32,1]),types.vector(["bootstrap2012/cage-teachpack",10049,298,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10064,299,3,11]),types.vector(["bootstrap2012/cage-teachpack",10076,299,15,10]),types.vector(["bootstrap2012/cage-teachpack",10087,299,26,1]),types.vector(["bootstrap2012/cage-teachpack",10089,299,28,31]),types.vector(["bootstrap2012/cage-teachpack",10121,299,60,10]),types.vector(["bootstrap2012/cage-teachpack",10063,299,2,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10063,299,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10064,299,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10090,299,29,1]),types.vector(["bootstrap2012/cage-teachpack",10092,299,31,25]),types.vector(["bootstrap2012/cage-teachpack",10118,299,57,1]),types.vector(["bootstrap2012/cage-teachpack",10089,299,28,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10089,299,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":140,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10090,299,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10093,299,32,12]),types.vector(["bootstrap2012/cage-teachpack",10106,299,45,10]),types.vector(["bootstrap2012/cage-teachpack",10092,299,31,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10092,299,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10093,299,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10208,302,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10208,302,9,2]),types.vector(["bootstrap2012/cage-teachpack",10211,302,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10215,302,16,1]),types.vector(["bootstrap2012/cage-teachpack",10217,302,18,1]),types.vector(["bootstrap2012/cage-teachpack",10219,302,20,1]),types.vector(["bootstrap2012/cage-teachpack",10214,302,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10214,302,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10215,302,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10441,307,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10441,307,9,4]),types.vector(["bootstrap2012/cage-teachpack",10446,307,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10450,307,18,3]),types.vector(["bootstrap2012/cage-teachpack",10454,307,22,16]),types.vector(["bootstrap2012/cage-teachpack",10449,307,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10449,307,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10450,307,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10455,307,23,1]),types.vector(["bootstrap2012/cage-teachpack",10457,307,25,1]),types.vector(["bootstrap2012/cage-teachpack",10459,307,27,10]),types.vector(["bootstrap2012/cage-teachpack",10454,307,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10454,307,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10455,307,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10460,307,28,1]),types.vector(["bootstrap2012/cage-teachpack",10462,307,30,2]),types.vector(["bootstrap2012/cage-teachpack",10465,307,33,3]),types.vector(["bootstrap2012/cage-teachpack",10459,307,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10459,307,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10460,307,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10462,307,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10693,312,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10693,312,9,6]),types.vector(["bootstrap2012/cage-teachpack",10700,312,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10704,312,20,3]),types.vector(["bootstrap2012/cage-teachpack",10708,312,24,16]),types.vector(["bootstrap2012/cage-teachpack",10703,312,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10703,312,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10704,312,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10709,312,25,1]),types.vector(["bootstrap2012/cage-teachpack",10711,312,27,1]),types.vector(["bootstrap2012/cage-teachpack",10713,312,29,10]),types.vector(["bootstrap2012/cage-teachpack",10708,312,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10708,312,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10709,312,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10714,312,30,1]),types.vector(["bootstrap2012/cage-teachpack",10716,312,32,2]),types.vector(["bootstrap2012/cage-teachpack",10719,312,35,3]),types.vector(["bootstrap2012/cage-teachpack",10713,312,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10713,312,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10714,312,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10716,312,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10945,317,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/cage-teachpack",10945,317,9,7]),types.vector(["bootstrap2012/cage-teachpack",10953,317,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10957,317,21,3]),types.vector(["bootstrap2012/cage-teachpack",10961,317,25,16]),types.vector(["bootstrap2012/cage-teachpack",10956,317,20,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10956,317,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10957,317,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10962,317,26,1]),types.vector(["bootstrap2012/cage-teachpack",10964,317,28,1]),types.vector(["bootstrap2012/cage-teachpack",10966,317,30,10]),types.vector(["bootstrap2012/cage-teachpack",10961,317,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10961,317,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":144,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10962,317,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",10967,317,31,1]),types.vector(["bootstrap2012/cage-teachpack",10969,317,33,2]),types.vector(["bootstrap2012/cage-teachpack",10972,317,36,3]),types.vector(["bootstrap2012/cage-teachpack",10966,317,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",10966,317,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":141,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10967,317,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",10969,317,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11055,321,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/cage-teachpack",11055,321,9,4]),types.vector(["bootstrap2012/cage-teachpack",11060,321,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11068,322,3,8]),types.vector(["bootstrap2012/cage-teachpack",11077,322,12,3]),types.vector(["bootstrap2012/cage-teachpack",11081,322,16,21]),types.vector(["bootstrap2012/cage-teachpack",11067,322,2,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11067,322,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11068,322,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11082,322,17,6]),types.vector(["bootstrap2012/cage-teachpack",11089,322,24,12]),types.vector(["bootstrap2012/cage-teachpack",11081,322,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11081,322,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11082,322,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11090,322,25,6]),types.vector(["bootstrap2012/cage-teachpack",11097,322,32,3]),types.vector(["bootstrap2012/cage-teachpack",11089,322,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11089,322,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11090,322,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11212,326,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/cage-teachpack",11212,326,9,7]),types.vector(["bootstrap2012/cage-teachpack",11220,326,17,1]),types.vector(["bootstrap2012/cage-teachpack",11222,326,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11229,327,3,6]),types.vector(["bootstrap2012/cage-teachpack",11239,328,3,29]),types.vector(["bootstrap2012/cage-teachpack",11272,329,3,1]),types.vector(["bootstrap2012/cage-teachpack",11228,327,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11228,327,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":139,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11229,327,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/cage-teachpack",11240,328,4,6]),types.vector(["bootstrap2012/cage-teachpack",11248,328,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11254,328,18,6]),types.vector(["bootstrap2012/cage-teachpack",11261,328,25,3]),types.vector(["bootstrap2012/cage-teachpack",11265,328,29,1]),types.vector(["bootstrap2012/cage-teachpack",11253,328,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11253,328,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11254,328,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11286,331,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/cage-teachpack",11286,331,9,3]),types.vector(["bootstrap2012/cage-teachpack",11290,331,13,1]),types.vector(["bootstrap2012/cage-teachpack",11292,331,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11298,332,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11302,332,7,5]),types.vector(["bootstrap2012/cage-teachpack",11308,332,13,1]),types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11302,332,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11301,332,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11312,332,17,7]),types.vector(["bootstrap2012/cage-teachpack",11320,332,25,1]),types.vector(["bootstrap2012/cage-teachpack",11322,332,27,1]),types.vector(["bootstrap2012/cage-teachpack",11311,332,16,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11311,332,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11312,332,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11326,332,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11330,332,35,3]),types.vector(["bootstrap2012/cage-teachpack",11334,332,39,12]),types.vector(["bootstrap2012/cage-teachpack",11347,332,52,2]),types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11330,332,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11335,332,40,6]),types.vector(["bootstrap2012/cage-teachpack",11342,332,47,1]),types.vector(["bootstrap2012/cage-teachpack",11344,332,49,1]),types.vector(["bootstrap2012/cage-teachpack",11334,332,39,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11334,332,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11335,332,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11329,332,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11371,335,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/cage-teachpack",11371,335,9,7]),types.vector(["bootstrap2012/cage-teachpack",11379,335,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11387,336,3,7]),types.vector(["bootstrap2012/cage-teachpack",11395,336,11,3]),types.vector(["bootstrap2012/cage-teachpack",11399,336,15,63]),types.vector(["bootstrap2012/cage-teachpack",11386,336,2,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11386,336,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11387,336,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11400,336,16,9]),types.vector(["bootstrap2012/cage-teachpack",11410,336,26,17]),types.vector(["bootstrap2012/cage-teachpack",11428,336,44,18]),types.vector(["bootstrap2012/cage-teachpack",11447,336,63,7]),types.vector(["bootstrap2012/cage-teachpack",11455,336,71,6]),types.vector(["bootstrap2012/cage-teachpack",11399,336,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11399,336,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11400,336,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11411,336,27,11]),types.vector(["bootstrap2012/cage-teachpack",11423,336,39,3]),types.vector(["bootstrap2012/cage-teachpack",11410,336,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11410,336,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11411,336,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/cage-teachpack",11429,336,45,12]),types.vector(["bootstrap2012/cage-teachpack",11442,336,58,3]),types.vector(["bootstrap2012/cage-teachpack",11428,336,44,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/cage-teachpack",11428,336,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/cage-teachpack",11429,336,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}}]}}, 'provides': ["pick","sq","subset?","tangent","type","start","string->image","sine","put-image","color->alpha","in?","number->image","overlay-at","cosine","boolean->string","clipart/url","boolean->image"]}; diff --git a/servlet-htdocs/collects/bootstrap2012/function-teachpack.js b/servlet-htdocs/collects/bootstrap2012/function-teachpack.js index ce47e2b..57d5aed 100644 --- a/servlet-htdocs/collects/bootstrap2012/function-teachpack.js +++ b/servlet-htdocs/collects/bootstrap2012/function-teachpack.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["bootstrap2012/function-teachpack"] = { 'name': "bootstrap2012/function-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"set!"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"rocket-add"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"text-add"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"tock"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"IMAGE0"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"boolean->image"},{"$":"global-bucket","value":"ROCKET"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("key=?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",418,18,8,5])}],"body":{"$":"constant","value":200}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",438,19,8,6])}],"body":{"$":"constant","value":600}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",458,20,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",466,20,16,11]),types.vector(["bootstrap2012/function-teachpack",478,20,28,5]),types.vector(["bootstrap2012/function-teachpack",484,20,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",465,20,15,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",466,20,16,11])},"rands":[{"$":"toplevel","depth":2,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",478,20,28,5])},{"$":"toplevel","depth":2,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",484,20,34,6])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",502,22,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",510,22,16,10]),types.vector(["bootstrap2012/function-teachpack",521,22,27,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",509,22,15,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",510,22,16,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2012/rocket.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",590,23,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",598,23,16,11]),types.vector(["bootstrap2012/function-teachpack",610,23,28,6]),types.vector(["bootstrap2012/function-teachpack",617,23,35,26]),types.vector(["bootstrap2012/function-teachpack",644,23,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",597,23,15,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",598,23,16,11])},"rands":[{"$":"toplevel","depth":3,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",610,23,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",618,23,36,1]),types.vector(["bootstrap2012/function-teachpack",620,23,38,20]),types.vector(["bootstrap2012/function-teachpack",641,23,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",617,23,35,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",618,23,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",621,23,39,11]),types.vector(["bootstrap2012/function-teachpack",633,23,51,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",620,23,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",621,23,39,11])},"rands":[{"$":"toplevel","depth":6,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",633,23,51,6])}]}}},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",645,23,63,12]),types.vector(["bootstrap2012/function-teachpack",658,23,76,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",644,23,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",645,23,63,12])},"rands":[{"$":"toplevel","depth":4,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",658,23,76,6])}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",837,28,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2012/function-teachpack",837,28,9,10]),types.vector(["bootstrap2012/function-teachpack",848,28,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",854,29,3,8]),types.vector(["bootstrap2012/function-teachpack",863,29,12,7]),types.vector(["bootstrap2012/function-teachpack",871,29,20,17]),types.vector(["bootstrap2012/function-teachpack",889,29,38,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",853,29,2,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",854,29,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",864,29,13,3]),types.vector(["bootstrap2012/function-teachpack",868,29,17,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",863,29,12,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",864,29,13,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",872,29,21,7]),types.vector(["bootstrap2012/function-teachpack",880,29,29,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",871,29,20,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",873,29,22,3]),types.vector(["bootstrap2012/function-teachpack",877,29,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",872,29,21,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",873,29,22,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",881,29,30,3]),types.vector(["bootstrap2012/function-teachpack",885,29,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",880,29,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",881,29,30,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",890,29,39,10]),types.vector(["bootstrap2012/function-teachpack",901,29,50,1]),types.vector(["bootstrap2012/function-teachpack",903,29,52,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",889,29,38,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",890,29,39,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":5,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",903,29,52,6])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1025,33,9,8])}],"body":{"$":"lam","name":types.symbol("text-add"),"locs":[types.vector(["bootstrap2012/function-teachpack",1025,33,9,8]),types.vector(["bootstrap2012/function-teachpack",1034,33,18,4]),types.vector(["bootstrap2012/function-teachpack",1039,33,23,6]),types.vector(["bootstrap2012/function-teachpack",1046,33,30,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1057,34,3,11]),types.vector(["bootstrap2012/function-teachpack",1069,34,15,79]),types.vector(["bootstrap2012/function-teachpack",1164,35,15,2]),types.vector(["bootstrap2012/function-teachpack",1183,36,15,1]),types.vector(["bootstrap2012/function-teachpack",1201,37,15,194])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1056,34,2,340])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1057,34,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1070,34,16,4]),types.vector(["bootstrap2012/function-teachpack",1075,34,21,46]),types.vector(["bootstrap2012/function-teachpack",1122,34,68,2]),types.vector(["bootstrap2012/function-teachpack",1125,34,71,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1069,34,15,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1070,34,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1076,34,22,13]),types.vector(["bootstrap2012/function-teachpack",1090,34,36,8]),types.vector(["bootstrap2012/function-teachpack",1099,34,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1075,34,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1076,34,22,13])},"rands":[{"$":"constant","value":"Time: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1100,34,46,14]),types.vector(["bootstrap2012/function-teachpack",1115,34,61,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1099,34,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1100,34,46,14])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1126,34,72,10]),types.vector(["bootstrap2012/function-teachpack",1137,34,83,2]),types.vector(["bootstrap2012/function-teachpack",1140,34,86,3]),types.vector(["bootstrap2012/function-teachpack",1144,34,90,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1125,34,71,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1126,34,72,10])},"rands":[{"$":"constant","value":41},{"$":"constant","value":128},{"$":"constant","value":38}]}}}]}}},{"$":"constant","value":67},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1202,37,16,11]),types.vector(["bootstrap2012/function-teachpack",1214,37,28,83]),types.vector(["bootstrap2012/function-teachpack",1326,38,28,2]),types.vector(["bootstrap2012/function-teachpack",1357,39,28,2]),types.vector(["bootstrap2012/function-teachpack",1388,40,28,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1201,37,15,194])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1202,37,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1215,37,29,4]),types.vector(["bootstrap2012/function-teachpack",1220,37,34,50]),types.vector(["bootstrap2012/function-teachpack",1271,37,85,2]),types.vector(["bootstrap2012/function-teachpack",1274,37,88,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1214,37,28,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1215,37,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1221,37,35,13]),types.vector(["bootstrap2012/function-teachpack",1235,37,49,10]),types.vector(["bootstrap2012/function-teachpack",1246,37,60,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1220,37,34,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1221,37,35,13])},"rands":[{"$":"constant","value":"Height: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1247,37,61,14]),types.vector(["bootstrap2012/function-teachpack",1262,37,76,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1246,37,60,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1247,37,61,14])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1275,37,89,10]),types.vector(["bootstrap2012/function-teachpack",1286,37,100,2]),types.vector(["bootstrap2012/function-teachpack",1289,37,103,2]),types.vector(["bootstrap2012/function-teachpack",1292,37,106,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1274,37,88,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1275,37,89,10])},"rands":[{"$":"constant","value":38},{"$":"constant","value":38},{"$":"constant","value":128}]}}}]}}},{"$":"constant","value":60},{"$":"constant","value":20},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1526,44,9,10])}],"body":{"$":"lam","name":types.symbol("rocket-add"),"locs":[types.vector(["bootstrap2012/function-teachpack",1526,44,9,10]),types.vector(["bootstrap2012/function-teachpack",1537,44,20,1]),types.vector(["bootstrap2012/function-teachpack",1539,44,22,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1561,46,6,2]),types.vector(["bootstrap2012/function-teachpack",1564,46,9,21]),types.vector(["bootstrap2012/function-teachpack",1586,46,31,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1561,46,6,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1565,46,10,12]),types.vector(["bootstrap2012/function-teachpack",1578,46,23,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1564,46,9,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1565,46,10,12])},"rands":[{"$":"toplevel","depth":7,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1578,46,23,6])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1587,46,32,1]),types.vector(["bootstrap2012/function-teachpack",1589,46,34,6]),types.vector(["bootstrap2012/function-teachpack",1596,46,41,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1586,46,31,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1587,46,32,1])},"rands":[{"$":"toplevel","depth":8,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1589,46,34,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1597,46,42,7]),types.vector(["bootstrap2012/function-teachpack",1605,46,50,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1596,46,41,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1598,46,43,3]),types.vector(["bootstrap2012/function-teachpack",1602,46,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1597,46,42,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1598,46,43,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1606,46,51,3]),types.vector(["bootstrap2012/function-teachpack",1610,46,55,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1605,46,50,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1606,46,51,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1622,47,6,11]),types.vector(["bootstrap2012/function-teachpack",1634,47,18,6]),types.vector(["bootstrap2012/function-teachpack",1641,47,25,3]),types.vector(["bootstrap2012/function-teachpack",1645,47,29,3]),types.vector(["bootstrap2012/function-teachpack",1649,47,33,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1621,47,5,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1622,47,6,11])},"rands":[{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1634,47,18,6])},{"$":"constant","value":100},{"$":"constant","value":200},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])},{"$":"toplevel","depth":4,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1669,48,11,11]),types.vector(["bootstrap2012/function-teachpack",1681,48,23,6]),types.vector(["bootstrap2012/function-teachpack",1688,48,30,3]),types.vector(["bootstrap2012/function-teachpack",1692,48,34,28]),types.vector(["bootstrap2012/function-teachpack",1721,48,63,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1668,48,10,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1669,48,11,11])},"rands":[{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1681,48,23,6])},{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1693,48,35,1]),types.vector(["bootstrap2012/function-teachpack",1695,48,37,6]),types.vector(["bootstrap2012/function-teachpack",1702,48,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1692,48,34,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1693,48,35,1])},"rands":[{"$":"toplevel","depth":6,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1695,48,37,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1703,48,45,7]),types.vector(["bootstrap2012/function-teachpack",1711,48,53,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1702,48,44,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1704,48,46,3]),types.vector(["bootstrap2012/function-teachpack",1708,48,50,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1703,48,45,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1704,48,46,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1712,48,54,3]),types.vector(["bootstrap2012/function-teachpack",1716,48,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1711,48,53,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1712,48,54,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1549,45,2,181]),types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1841,53,9,4])}],"body":{"$":"lam","name":types.symbol("tock"),"locs":[types.vector(["bootstrap2012/function-teachpack",1841,53,9,4]),types.vector(["bootstrap2012/function-teachpack",1846,53,14,1]),types.vector(["bootstrap2012/function-teachpack",1848,53,16,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1866,55,6,5]),types.vector(["bootstrap2012/function-teachpack",1872,55,12,2]),types.vector(["bootstrap2012/function-teachpack",1875,55,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1866,55,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types['char'](String.fromCharCode(32))}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1885,55,25,4]),types.vector(["bootstrap2012/function-teachpack",1890,55,30,13]),types.vector(["bootstrap2012/function-teachpack",1904,55,44,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1884,55,24,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1885,55,25,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1891,55,31,1]),types.vector(["bootstrap2012/function-teachpack",1893,55,33,1]),types.vector(["bootstrap2012/function-teachpack",1895,55,35,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1890,55,30,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1891,55,31,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1896,55,36,3]),types.vector(["bootstrap2012/function-teachpack",1900,55,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1895,55,35,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1896,55,36,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1905,55,45,3]),types.vector(["bootstrap2012/function-teachpack",1909,55,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1904,55,44,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1905,55,45,3])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])},{"$":"toplevel","depth":4,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1854,54,2,73]),types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1939,58,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap2012/function-teachpack",1939,58,9,5]),types.vector(["bootstrap2012/function-teachpack",1945,58,15,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1963,59,3,8]),types.vector(["bootstrap2012/function-teachpack",1972,59,12,22]),types.vector(["bootstrap2012/function-teachpack",2000,60,12,13]),types.vector(["bootstrap2012/function-teachpack",2019,61,12,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1962,59,2,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1963,59,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1973,59,13,4]),types.vector(["bootstrap2012/function-teachpack",1978,59,18,1]),types.vector(["bootstrap2012/function-teachpack",1980,59,20,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1972,59,12,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1973,59,13,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",2001,60,13,6]),types.vector(["bootstrap2012/function-teachpack",2008,60,20,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",2000,60,12,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",2001,60,13,6])},"rands":[{"$":"toplevel","depth":4,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",2008,60,20,4])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",2020,61,13,9]),types.vector(["bootstrap2012/function-teachpack",2030,61,23,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",2019,61,12,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",2020,61,13,9])},"rands":[{"$":"toplevel","depth":4,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",2030,61,23,10])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3570,113,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/function-teachpack",3570,113,9,4]),types.vector(["bootstrap2012/function-teachpack",3575,113,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3593,115,5,10]),types.vector(["bootstrap2012/function-teachpack",3604,115,16,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3593,115,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3626,116,5,7]),types.vector(["bootstrap2012/function-teachpack",3634,116,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3626,116,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3654,117,5,7]),types.vector(["bootstrap2012/function-teachpack",3662,117,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3654,117,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3682,118,5,6]),types.vector(["bootstrap2012/function-teachpack",3689,118,12,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3682,118,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3708,119,5,8]),types.vector(["bootstrap2012/function-teachpack",3717,119,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3708,119,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3738,120,5,5]),types.vector(["bootstrap2012/function-teachpack",3744,120,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3738,120,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3766,121,5,7]),types.vector(["bootstrap2012/function-teachpack",3774,121,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3766,121,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3794,122,5,5]),types.vector(["bootstrap2012/function-teachpack",3800,122,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3794,122,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3818,123,5,5]),types.vector(["bootstrap2012/function-teachpack",3824,123,11,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3818,123,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3842,124,5,7]),types.vector(["bootstrap2012/function-teachpack",3850,124,13,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3842,124,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"toplevel","depth":4,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3582,114,2,312]),types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4361,136,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/function-teachpack",4361,136,9,11]),types.vector(["bootstrap2012/function-teachpack",4373,136,21,1]),types.vector(["bootstrap2012/function-teachpack",4375,136,23,1]),types.vector(["bootstrap2012/function-teachpack",4377,136,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4391,137,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4396,137,8,1]),types.vector(["bootstrap2012/function-teachpack",4398,137,10,41]),types.vector(["bootstrap2012/function-teachpack",4440,137,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4396,137,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4399,137,11,3]),types.vector(["bootstrap2012/function-teachpack",4403,137,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4398,137,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4399,137,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4404,137,16,1]),types.vector(["bootstrap2012/function-teachpack",4406,137,18,15]),types.vector(["bootstrap2012/function-teachpack",4422,137,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4403,137,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4404,137,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4407,137,19,9]),types.vector(["bootstrap2012/function-teachpack",4419,137,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4406,137,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4407,137,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4423,137,35,9]),types.vector(["bootstrap2012/function-teachpack",4435,137,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4422,137,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4423,137,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4391,137,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4459,138,8,1]),types.vector(["bootstrap2012/function-teachpack",4461,138,10,41]),types.vector(["bootstrap2012/function-teachpack",4503,138,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4459,138,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4462,138,11,3]),types.vector(["bootstrap2012/function-teachpack",4466,138,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4461,138,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4462,138,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4467,138,16,1]),types.vector(["bootstrap2012/function-teachpack",4469,138,18,15]),types.vector(["bootstrap2012/function-teachpack",4485,138,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4466,138,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4467,138,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4470,138,19,11]),types.vector(["bootstrap2012/function-teachpack",4482,138,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4469,138,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4470,138,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4486,138,35,11]),types.vector(["bootstrap2012/function-teachpack",4498,138,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4485,138,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4486,138,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4391,137,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4522,139,8,1]),types.vector(["bootstrap2012/function-teachpack",4524,139,10,41]),types.vector(["bootstrap2012/function-teachpack",4566,139,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4522,139,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4525,139,11,3]),types.vector(["bootstrap2012/function-teachpack",4529,139,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4524,139,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4525,139,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4530,139,16,1]),types.vector(["bootstrap2012/function-teachpack",4532,139,18,15]),types.vector(["bootstrap2012/function-teachpack",4548,139,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4529,139,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4530,139,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4533,139,19,10]),types.vector(["bootstrap2012/function-teachpack",4545,139,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4532,139,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4533,139,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4549,139,35,10]),types.vector(["bootstrap2012/function-teachpack",4561,139,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4548,139,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4549,139,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4391,137,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4585,140,8,1]),types.vector(["bootstrap2012/function-teachpack",4587,140,10,41]),types.vector(["bootstrap2012/function-teachpack",4629,140,52,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4585,140,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4588,140,11,3]),types.vector(["bootstrap2012/function-teachpack",4592,140,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4587,140,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4588,140,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4593,140,16,1]),types.vector(["bootstrap2012/function-teachpack",4595,140,18,15]),types.vector(["bootstrap2012/function-teachpack",4611,140,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4592,140,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4593,140,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4596,140,19,11]),types.vector(["bootstrap2012/function-teachpack",4608,140,31,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4595,140,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4596,140,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4612,140,35,11]),types.vector(["bootstrap2012/function-teachpack",4624,140,47,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4611,140,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4612,140,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4734,144,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/function-teachpack",4734,144,9,7]),types.vector(["bootstrap2012/function-teachpack",4742,144,17,1]),types.vector(["bootstrap2012/function-teachpack",4744,144,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4750,145,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4755,145,8,6]),types.vector(["bootstrap2012/function-teachpack",4762,145,15,15]),types.vector(["bootstrap2012/function-teachpack",4778,145,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4755,145,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4763,145,16,9]),types.vector(["bootstrap2012/function-teachpack",4775,145,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4762,145,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4763,145,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4779,145,32,9]),types.vector(["bootstrap2012/function-teachpack",4791,145,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4778,145,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4779,145,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4750,145,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4803,146,8,6]),types.vector(["bootstrap2012/function-teachpack",4810,146,15,15]),types.vector(["bootstrap2012/function-teachpack",4826,146,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4803,146,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4811,146,16,11]),types.vector(["bootstrap2012/function-teachpack",4823,146,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4810,146,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4811,146,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4827,146,32,11]),types.vector(["bootstrap2012/function-teachpack",4839,146,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4826,146,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4827,146,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4750,145,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4851,147,8,6]),types.vector(["bootstrap2012/function-teachpack",4858,147,15,15]),types.vector(["bootstrap2012/function-teachpack",4874,147,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4851,147,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4859,147,16,10]),types.vector(["bootstrap2012/function-teachpack",4871,147,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4858,147,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4859,147,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4875,147,32,10]),types.vector(["bootstrap2012/function-teachpack",4887,147,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4874,147,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4875,147,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4750,145,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4899,148,8,6]),types.vector(["bootstrap2012/function-teachpack",4906,148,15,15]),types.vector(["bootstrap2012/function-teachpack",4922,148,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4899,148,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4907,148,16,11]),types.vector(["bootstrap2012/function-teachpack",4919,148,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4906,148,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4907,148,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4923,148,32,11]),types.vector(["bootstrap2012/function-teachpack",4935,148,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4922,148,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4923,148,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5487,161,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/function-teachpack",5487,161,9,10]),types.vector(["bootstrap2012/function-teachpack",5498,161,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5514,163,5,7]),types.vector(["bootstrap2012/function-teachpack",5522,163,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5514,163,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5530,164,5,11]),types.vector(["bootstrap2012/function-teachpack",5542,164,17,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5529,164,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5530,164,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])},{"$":"toplevel","depth":4,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5503,162,2,59]),types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5575,169,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/function-teachpack",5575,169,9,15]),types.vector(["bootstrap2012/function-teachpack",5591,169,25,1]),types.vector(["bootstrap2012/function-teachpack",5593,169,27,1]),types.vector(["bootstrap2012/function-teachpack",5595,169,29,1]),types.vector(["bootstrap2012/function-teachpack",5597,169,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5603,170,3,1]),types.vector(["bootstrap2012/function-teachpack",5605,170,5,7]),types.vector(["bootstrap2012/function-teachpack",5613,170,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5602,170,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5603,170,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5606,170,6,1]),types.vector(["bootstrap2012/function-teachpack",5608,170,8,1]),types.vector(["bootstrap2012/function-teachpack",5610,170,10,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5605,170,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5606,170,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5627,172,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/function-teachpack",5627,172,9,22]),types.vector(["bootstrap2012/function-teachpack",5650,172,32,6]),types.vector(["bootstrap2012/function-teachpack",5657,172,39,3]),types.vector(["bootstrap2012/function-teachpack",5661,172,43,5]),types.vector(["bootstrap2012/function-teachpack",5667,172,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5677,173,2,345]),types.vector(["bootstrap2012/function-teachpack",5686,173,11,21]),types.vector(["bootstrap2012/function-teachpack",5720,174,11,21]),types.vector(["bootstrap2012/function-teachpack",5756,175,13,49])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5677,173,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",5677,173,2,345]),types.vector(["bootstrap2012/function-teachpack",5684,173,9,1]),types.vector(["bootstrap2012/function-teachpack",5718,174,9,1]),types.vector(["bootstrap2012/function-teachpack",5752,175,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5813,176,5,6]),types.vector(["bootstrap2012/function-teachpack",5825,177,5,39]),types.vector(["bootstrap2012/function-teachpack",5870,178,5,39]),types.vector(["bootstrap2012/function-teachpack",5915,179,5,49]),types.vector(["bootstrap2012/function-teachpack",5970,180,5,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5812,176,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5813,176,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5826,177,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5830,177,10,1]),types.vector(["bootstrap2012/function-teachpack",5832,177,12,1]),types.vector(["bootstrap2012/function-teachpack",5834,177,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5830,177,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5838,177,18,4]),types.vector(["bootstrap2012/function-teachpack",5843,177,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5837,177,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5838,177,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5844,177,24,3]),types.vector(["bootstrap2012/function-teachpack",5848,177,28,7]),types.vector(["bootstrap2012/function-teachpack",5856,177,36,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5843,177,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5849,177,29,1]),types.vector(["bootstrap2012/function-teachpack",5851,177,31,1]),types.vector(["bootstrap2012/function-teachpack",5853,177,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5848,177,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5849,177,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5871,178,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5875,178,10,1]),types.vector(["bootstrap2012/function-teachpack",5877,178,12,1]),types.vector(["bootstrap2012/function-teachpack",5879,178,14,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5875,178,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5883,178,18,4]),types.vector(["bootstrap2012/function-teachpack",5888,178,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5882,178,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5883,178,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5889,178,24,3]),types.vector(["bootstrap2012/function-teachpack",5893,178,28,1]),types.vector(["bootstrap2012/function-teachpack",5895,178,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5888,178,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5896,178,31,1]),types.vector(["bootstrap2012/function-teachpack",5898,178,33,1]),types.vector(["bootstrap2012/function-teachpack",5900,178,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5895,178,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5896,178,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5916,179,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5920,179,10,1]),types.vector(["bootstrap2012/function-teachpack",5922,179,12,1]),types.vector(["bootstrap2012/function-teachpack",5924,179,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5920,179,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5925,179,15,1]),types.vector(["bootstrap2012/function-teachpack",5927,179,17,5]),types.vector(["bootstrap2012/function-teachpack",5933,179,23,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5924,179,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5925,179,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5938,179,28,4]),types.vector(["bootstrap2012/function-teachpack",5943,179,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5937,179,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5938,179,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5944,179,34,3]),types.vector(["bootstrap2012/function-teachpack",5948,179,38,7]),types.vector(["bootstrap2012/function-teachpack",5956,179,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5943,179,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5949,179,39,1]),types.vector(["bootstrap2012/function-teachpack",5951,179,41,1]),types.vector(["bootstrap2012/function-teachpack",5953,179,43,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5948,179,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5949,179,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5971,180,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5975,180,10,1]),types.vector(["bootstrap2012/function-teachpack",5977,180,12,1]),types.vector(["bootstrap2012/function-teachpack",5979,180,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5975,180,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5980,180,15,1]),types.vector(["bootstrap2012/function-teachpack",5982,180,17,6]),types.vector(["bootstrap2012/function-teachpack",5989,180,24,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5979,180,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5980,180,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5994,180,29,4]),types.vector(["bootstrap2012/function-teachpack",5999,180,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5993,180,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5994,180,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6000,180,35,3]),types.vector(["bootstrap2012/function-teachpack",6004,180,39,1]),types.vector(["bootstrap2012/function-teachpack",6006,180,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5999,180,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6007,180,42,1]),types.vector(["bootstrap2012/function-teachpack",6009,180,44,1]),types.vector(["bootstrap2012/function-teachpack",6011,180,46,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6006,180,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6007,180,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5687,173,12,9]),types.vector(["bootstrap2012/function-teachpack",5697,173,22,3]),types.vector(["bootstrap2012/function-teachpack",5701,173,26,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5686,173,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5687,173,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5721,174,12,5]),types.vector(["bootstrap2012/function-teachpack",5727,174,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5720,174,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5721,174,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5728,174,19,1]),types.vector(["bootstrap2012/function-teachpack",5730,174,21,3]),types.vector(["bootstrap2012/function-teachpack",5734,174,25,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5727,174,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5728,174,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",5757,175,14,6]),types.vector(["bootstrap2012/function-teachpack",5765,175,22,1]),types.vector(["bootstrap2012/function-teachpack",5767,175,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5771,175,28,15]),types.vector(["bootstrap2012/function-teachpack",5787,175,44,1]),types.vector(["bootstrap2012/function-teachpack",5789,175,46,1]),types.vector(["bootstrap2012/function-teachpack",5791,175,48,5]),types.vector(["bootstrap2012/function-teachpack",5797,175,54,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5770,175,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5771,175,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6034,182,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/function-teachpack",6034,182,9,22]),types.vector(["bootstrap2012/function-teachpack",6057,182,32,6]),types.vector(["bootstrap2012/function-teachpack",6064,182,39,5]),types.vector(["bootstrap2012/function-teachpack",6070,182,45,6]),types.vector(["bootstrap2012/function-teachpack",6077,182,52,7]),types.vector(["bootstrap2012/function-teachpack",6085,182,60,7]),types.vector(["bootstrap2012/function-teachpack",6093,182,68,11]),types.vector(["bootstrap2012/function-teachpack",6105,182,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6118,183,2,973]),types.vector(["bootstrap2012/function-teachpack",6131,183,15,53]),types.vector(["bootstrap2012/function-teachpack",6200,184,14,11]),types.vector(["bootstrap2012/function-teachpack",6227,185,14,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6118,183,2,973])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",6118,183,2,973]),types.vector(["bootstrap2012/function-teachpack",6125,183,9,5]),types.vector(["bootstrap2012/function-teachpack",6195,184,9,4]),types.vector(["bootstrap2012/function-teachpack",6222,185,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/function-teachpack",6260,187,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6317,189,25,3]),types.vector(["bootstrap2012/function-teachpack",6321,189,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6316,189,24,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6317,189,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6322,189,30,6]),types.vector(["bootstrap2012/function-teachpack",6329,189,37,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6321,189,29,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6322,189,30,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6357,190,20,701]),types.vector(["bootstrap2012/function-teachpack",6367,190,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6357,190,20,701])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",6357,190,20,701]),types.vector(["bootstrap2012/function-teachpack",6364,190,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6435,192,25,4]),types.vector(["bootstrap2012/function-teachpack",6440,192,30,5]),types.vector(["bootstrap2012/function-teachpack",6446,192,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6434,192,24,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6435,192,25,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6447,192,37,3]),types.vector(["bootstrap2012/function-teachpack",6451,192,41,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6446,192,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6447,192,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6490,193,31,3]),types.vector(["bootstrap2012/function-teachpack",6494,193,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6489,193,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6490,193,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6495,193,36,8]),types.vector(["bootstrap2012/function-teachpack",6504,193,45,4]),types.vector(["bootstrap2012/function-teachpack",6509,193,50,2]),types.vector(["bootstrap2012/function-teachpack",6512,193,53,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6494,193,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6495,193,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6579,195,29,9]),types.vector(["bootstrap2012/function-teachpack",6589,195,39,4]),types.vector(["bootstrap2012/function-teachpack",6594,195,44,2]),types.vector(["bootstrap2012/function-teachpack",6597,195,47,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6578,195,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6579,195,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6630,196,29,4]),types.vector(["bootstrap2012/function-teachpack",6635,196,34,4]),types.vector(["bootstrap2012/function-teachpack",6640,196,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6629,196,28,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6630,196,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6641,196,40,4]),types.vector(["bootstrap2012/function-teachpack",6646,196,45,2]),types.vector(["bootstrap2012/function-teachpack",6649,196,48,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6640,196,39,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6641,196,40,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6685,197,29,4]),types.vector(["bootstrap2012/function-teachpack",6690,197,34,5]),types.vector(["bootstrap2012/function-teachpack",6731,198,34,291])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6684,197,28,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6685,197,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6732,198,35,6]),types.vector(["bootstrap2012/function-teachpack",6739,198,42,5]),types.vector(["bootstrap2012/function-teachpack",6787,199,42,234])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6731,198,34,291])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6732,198,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6788,199,43,6]),types.vector(["bootstrap2012/function-teachpack",6795,199,50,127]),types.vector(["bootstrap2012/function-teachpack",6973,201,50,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6787,199,42,234])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6788,199,43,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",6796,199,51,6]),types.vector(["bootstrap2012/function-teachpack",6804,199,59,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6,8,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6863,200,53,11]),types.vector(["bootstrap2012/function-teachpack",6875,200,65,23]),types.vector(["bootstrap2012/function-teachpack",6899,200,89,11]),types.vector(["bootstrap2012/function-teachpack",6911,200,101,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6862,200,52,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6863,200,53,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6876,200,66,10]),types.vector(["bootstrap2012/function-teachpack",6887,200,77,6]),types.vector(["bootstrap2012/function-teachpack",6894,200,84,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6875,200,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6876,200,66,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6974,201,51,22]),types.vector(["bootstrap2012/function-teachpack",6997,201,74,6]),types.vector(["bootstrap2012/function-teachpack",7004,201,81,2]),types.vector(["bootstrap2012/function-teachpack",7007,201,84,5]),types.vector(["bootstrap2012/function-teachpack",7013,201,90,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6973,201,50,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6974,201,51,22])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6483,193,24,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6483,193,24,542])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6483,193,24,542])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7051,202,25,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7050,202,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6368,190,31,3]),types.vector(["bootstrap2012/function-teachpack",6372,190,35,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6367,190,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6368,190,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6310,189,18,749])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6310,189,18,749])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6310,189,18,749])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7072,203,9,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7071,203,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6132,183,16,4]),types.vector(["bootstrap2012/function-teachpack",6137,183,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6131,183,15,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6132,183,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6138,183,22,15]),types.vector(["bootstrap2012/function-teachpack",6154,183,38,7]),types.vector(["bootstrap2012/function-teachpack",6162,183,46,7]),types.vector(["bootstrap2012/function-teachpack",6170,183,54,5]),types.vector(["bootstrap2012/function-teachpack",6176,183,60,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6137,183,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6138,183,22,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6201,184,15,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6200,184,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6201,184,15,9])},"rands":[]}}},{"$":"constant","value":types.EMPTY}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7103,206,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/function-teachpack",7103,206,9,16]),types.vector(["bootstrap2012/function-teachpack",7120,206,26,3]),types.vector(["bootstrap2012/function-teachpack",7124,206,30,7]),types.vector(["bootstrap2012/function-teachpack",7132,206,38,7]),types.vector(["bootstrap2012/function-teachpack",7140,206,46,12]),types.vector(["bootstrap2012/function-teachpack",7153,206,59,17]),types.vector(["bootstrap2012/function-teachpack",7171,206,77,9]),types.vector(["bootstrap2012/function-teachpack",7181,206,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7201,207,9,42]),types.vector(["bootstrap2012/function-teachpack",7204,207,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7201,207,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7201,207,9,42]),types.vector(["bootstrap2012/function-teachpack",7202,207,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7253,208,9,25]),types.vector(["bootstrap2012/function-teachpack",7260,208,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7253,208,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7253,208,9,25]),types.vector(["bootstrap2012/function-teachpack",7254,208,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7288,209,9,27]),types.vector(["bootstrap2012/function-teachpack",7296,209,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7288,209,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7288,209,9,27]),types.vector(["bootstrap2012/function-teachpack",7289,209,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7325,210,9,142]),types.vector(["bootstrap2012/function-teachpack",7328,210,12,138])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7325,210,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7325,210,9,142]),types.vector(["bootstrap2012/function-teachpack",7326,210,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7477,213,9,34]),types.vector(["bootstrap2012/function-teachpack",7480,213,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7477,213,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7477,213,9,34]),types.vector(["bootstrap2012/function-teachpack",7478,213,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7537,215,13,3]),types.vector(["bootstrap2012/function-teachpack",7541,215,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7536,215,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7537,215,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7542,215,18,7]),types.vector(["bootstrap2012/function-teachpack",7550,215,26,1]),types.vector(["bootstrap2012/function-teachpack",7552,215,28,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7541,215,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7542,215,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7565,216,9,8]),types.vector(["bootstrap2012/function-teachpack",7574,216,18,36]),types.vector(["bootstrap2012/function-teachpack",7629,217,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7564,216,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7565,216,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7575,216,19,6]),types.vector(["bootstrap2012/function-teachpack",7583,216,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7589,216,33,11]),types.vector(["bootstrap2012/function-teachpack",7601,216,45,1]),types.vector(["bootstrap2012/function-teachpack",7603,216,47,3]),types.vector(["bootstrap2012/function-teachpack",7607,216,51,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7588,216,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7589,216,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7630,217,19,22]),types.vector(["bootstrap2012/function-teachpack",7653,217,42,1]),types.vector(["bootstrap2012/function-teachpack",7655,217,44,5]),types.vector(["bootstrap2012/function-teachpack",7661,217,50,6]),types.vector(["bootstrap2012/function-teachpack",7668,217,57,7]),types.vector(["bootstrap2012/function-teachpack",7676,217,65,7]),types.vector(["bootstrap2012/function-teachpack",7684,217,73,1]),types.vector(["bootstrap2012/function-teachpack",7686,217,75,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7629,217,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7630,217,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7530,215,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7530,215,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7530,215,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7706,218,7,18]),types.vector(["bootstrap2012/function-teachpack",7725,218,26,16]),types.vector(["bootstrap2012/function-teachpack",7742,218,43,5]),types.vector(["bootstrap2012/function-teachpack",7748,218,49,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7705,218,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7706,218,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7726,218,27,12]),types.vector(["bootstrap2012/function-teachpack",7739,218,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7725,218,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7726,218,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7481,213,13,10]),types.vector(["bootstrap2012/function-teachpack",7492,213,24,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7480,213,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7481,213,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7332,210,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7332,210,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7329,210,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7332,210,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7363,211,17,10]),types.vector(["bootstrap2012/function-teachpack",7374,211,28,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7362,211,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7363,211,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7405,212,17,10]),types.vector(["bootstrap2012/function-teachpack",7416,212,28,1]),types.vector(["bootstrap2012/function-teachpack",7418,212,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7404,212,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7405,212,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7419,212,31,15]),types.vector(["bootstrap2012/function-teachpack",7435,212,47,7]),types.vector(["bootstrap2012/function-teachpack",7443,212,55,7]),types.vector(["bootstrap2012/function-teachpack",7451,212,63,5]),types.vector(["bootstrap2012/function-teachpack",7457,212,69,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7418,212,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7419,212,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7297,209,18,12]),types.vector(["bootstrap2012/function-teachpack",7310,209,31,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7296,209,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7297,209,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7261,208,17,11]),types.vector(["bootstrap2012/function-teachpack",7273,208,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7260,208,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7261,208,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7205,207,13,12]),types.vector(["bootstrap2012/function-teachpack",7218,207,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7204,207,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7205,207,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7219,207,27,17]),types.vector(["bootstrap2012/function-teachpack",7237,207,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7218,207,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7219,207,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7769,220,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/function-teachpack",7769,220,9,23]),types.vector(["bootstrap2012/function-teachpack",7793,220,33,3]),types.vector(["bootstrap2012/function-teachpack",7797,220,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7811,221,3,16]),types.vector(["bootstrap2012/function-teachpack",7828,221,20,3]),types.vector(["bootstrap2012/function-teachpack",7832,221,24,1]),types.vector(["bootstrap2012/function-teachpack",7834,221,26,1]),types.vector(["bootstrap2012/function-teachpack",7836,221,28,2]),types.vector(["bootstrap2012/function-teachpack",7839,221,31,20]),types.vector(["bootstrap2012/function-teachpack",7860,221,52,9]),types.vector(["bootstrap2012/function-teachpack",7870,221,62,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7810,221,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7811,221,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7840,221,32,10]),types.vector(["bootstrap2012/function-teachpack",7851,221,43,1]),types.vector(["bootstrap2012/function-teachpack",7853,221,45,1]),types.vector(["bootstrap2012/function-teachpack",7855,221,47,1]),types.vector(["bootstrap2012/function-teachpack",7857,221,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7839,221,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7840,221,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7883,222,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/function-teachpack",7883,222,9,24]),types.vector(["bootstrap2012/function-teachpack",7908,222,34,3]),types.vector(["bootstrap2012/function-teachpack",7912,222,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7925,223,2,442]),types.vector(["bootstrap2012/function-teachpack",7937,223,14,20]),types.vector(["bootstrap2012/function-teachpack",7980,224,21,2]),types.vector(["bootstrap2012/function-teachpack",8001,225,17,1]),types.vector(["bootstrap2012/function-teachpack",8017,226,13,23]),types.vector(["bootstrap2012/function-teachpack",8055,227,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7925,223,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7925,223,2,442]),types.vector(["bootstrap2012/function-teachpack",7932,223,9,4]),types.vector(["bootstrap2012/function-teachpack",7968,224,9,11]),types.vector(["bootstrap2012/function-teachpack",7993,225,9,7]),types.vector(["bootstrap2012/function-teachpack",8013,226,9,3]),types.vector(["bootstrap2012/function-teachpack",8051,227,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8087,228,5,16]),types.vector(["bootstrap2012/function-teachpack",8110,229,5,207]),types.vector(["bootstrap2012/function-teachpack",8323,234,5,3]),types.vector(["bootstrap2012/function-teachpack",8327,234,9,3]),types.vector(["bootstrap2012/function-teachpack",8331,234,13,11]),types.vector(["bootstrap2012/function-teachpack",8343,234,25,4]),types.vector(["bootstrap2012/function-teachpack",8348,234,30,9]),types.vector(["bootstrap2012/function-teachpack",8358,234,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8086,228,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8087,228,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8111,229,6,16]),types.vector(["bootstrap2012/function-teachpack",8134,230,6,135]),types.vector(["bootstrap2012/function-teachpack",8276,233,6,1]),types.vector(["bootstrap2012/function-teachpack",8278,233,8,3]),types.vector(["bootstrap2012/function-teachpack",8282,233,12,11]),types.vector(["bootstrap2012/function-teachpack",8294,233,24,4]),types.vector(["bootstrap2012/function-teachpack",8299,233,29,9]),types.vector(["bootstrap2012/function-teachpack",8309,233,39,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8110,229,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8111,229,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8135,230,7,16]),types.vector(["bootstrap2012/function-teachpack",8159,231,7,61]),types.vector(["bootstrap2012/function-teachpack",8228,232,7,3]),types.vector(["bootstrap2012/function-teachpack",8232,232,11,1]),types.vector(["bootstrap2012/function-teachpack",8234,232,13,11]),types.vector(["bootstrap2012/function-teachpack",8246,232,25,4]),types.vector(["bootstrap2012/function-teachpack",8251,232,30,9]),types.vector(["bootstrap2012/function-teachpack",8261,232,40,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8134,230,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8135,230,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8160,231,8,16]),types.vector(["bootstrap2012/function-teachpack",8177,231,25,3]),types.vector(["bootstrap2012/function-teachpack",8181,231,29,1]),types.vector(["bootstrap2012/function-teachpack",8183,231,31,1]),types.vector(["bootstrap2012/function-teachpack",8185,231,33,11]),types.vector(["bootstrap2012/function-teachpack",8197,231,45,4]),types.vector(["bootstrap2012/function-teachpack",8202,231,50,9]),types.vector(["bootstrap2012/function-teachpack",8212,231,60,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8159,231,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8160,231,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7938,223,15,10]),types.vector(["bootstrap2012/function-teachpack",7949,223,26,1]),types.vector(["bootstrap2012/function-teachpack",7951,223,28,1]),types.vector(["bootstrap2012/function-teachpack",7953,223,30,1]),types.vector(["bootstrap2012/function-teachpack",7955,223,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7937,223,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7938,223,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8018,226,14,1]),types.vector(["bootstrap2012/function-teachpack",8020,226,16,17]),types.vector(["bootstrap2012/function-teachpack",8038,226,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8017,226,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8018,226,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8021,226,17,11]),types.vector(["bootstrap2012/function-teachpack",8033,226,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8020,226,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8021,226,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8056,227,14,1]),types.vector(["bootstrap2012/function-teachpack",8058,227,16,18]),types.vector(["bootstrap2012/function-teachpack",8077,227,35,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8055,227,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8056,227,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8059,227,17,12]),types.vector(["bootstrap2012/function-teachpack",8072,227,30,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8058,227,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8059,227,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8536,239,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/function-teachpack",8536,239,9,13]),types.vector(["bootstrap2012/function-teachpack",8550,239,23,3]),types.vector(["bootstrap2012/function-teachpack",8554,239,27,12]),types.vector(["bootstrap2012/function-teachpack",8567,239,40,17]),types.vector(["bootstrap2012/function-teachpack",8585,239,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8598,240,2,299]),types.vector(["bootstrap2012/function-teachpack",8609,240,13,25]),types.vector(["bootstrap2012/function-teachpack",8649,241,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8598,240,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",8598,240,2,299]),types.vector(["bootstrap2012/function-teachpack",8605,240,9,3]),types.vector(["bootstrap2012/function-teachpack",8645,241,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8687,242,5,18]),types.vector(["bootstrap2012/function-teachpack",8711,243,5,137]),types.vector(["bootstrap2012/function-teachpack",8854,248,5,17]),types.vector(["bootstrap2012/function-teachpack",8877,249,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8686,242,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8687,242,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8712,243,6,3]),types.vector(["bootstrap2012/function-teachpack",8716,243,10,97]),types.vector(["bootstrap2012/function-teachpack",8824,247,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8711,243,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8712,243,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",8717,243,11,6]),types.vector(["bootstrap2012/function-teachpack",8725,243,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8741,244,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8745,244,17,11]),types.vector(["bootstrap2012/function-teachpack",8757,244,29,1]),types.vector(["bootstrap2012/function-teachpack",8759,244,31,3]),types.vector(["bootstrap2012/function-teachpack",8763,244,35,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8745,244,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8825,247,11,17]),types.vector(["bootstrap2012/function-teachpack",8843,247,29,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8824,247,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8825,247,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8855,248,6,11]),types.vector(["bootstrap2012/function-teachpack",8867,248,18,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8854,248,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8855,248,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8878,249,6,12]),types.vector(["bootstrap2012/function-teachpack",8891,249,19,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8877,249,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8878,249,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8610,240,14,10]),types.vector(["bootstrap2012/function-teachpack",8621,240,25,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8609,240,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8610,240,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8650,241,14,10]),types.vector(["bootstrap2012/function-teachpack",8661,241,25,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8649,241,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8650,241,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9020,252,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/function-teachpack",9020,252,9,12]),types.vector(["bootstrap2012/function-teachpack",9033,252,22,3]),types.vector(["bootstrap2012/function-teachpack",9037,252,26,12]),types.vector(["bootstrap2012/function-teachpack",9050,252,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9064,253,3,13]),types.vector(["bootstrap2012/function-teachpack",9078,253,17,3]),types.vector(["bootstrap2012/function-teachpack",9082,253,21,12]),types.vector(["bootstrap2012/function-teachpack",9095,253,34,20]),types.vector(["bootstrap2012/function-teachpack",9116,253,55,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9063,253,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9064,253,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9096,253,35,10]),types.vector(["bootstrap2012/function-teachpack",9107,253,46,1]),types.vector(["bootstrap2012/function-teachpack",9109,253,48,1]),types.vector(["bootstrap2012/function-teachpack",9111,253,50,1]),types.vector(["bootstrap2012/function-teachpack",9113,253,52,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9095,253,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9096,253,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9263,257,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/function-teachpack",9263,257,9,11]),types.vector(["bootstrap2012/function-teachpack",9275,257,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9283,258,3,24]),types.vector(["bootstrap2012/function-teachpack",9308,258,28,16]),types.vector(["bootstrap2012/function-teachpack",9325,258,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9282,258,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9283,258,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9309,258,29,10]),types.vector(["bootstrap2012/function-teachpack",9320,258,40,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9308,258,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9309,258,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9382,261,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/function-teachpack",9382,261,9,12]),types.vector(["bootstrap2012/function-teachpack",9395,261,22,3]),types.vector(["bootstrap2012/function-teachpack",9399,261,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9408,262,3,10]),types.vector(["bootstrap2012/function-teachpack",9419,262,14,3]),types.vector(["bootstrap2012/function-teachpack",9423,262,18,27]),types.vector(["bootstrap2012/function-teachpack",9451,262,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9407,262,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9408,262,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9424,262,19,13]),types.vector(["bootstrap2012/function-teachpack",9438,262,33,4]),types.vector(["bootstrap2012/function-teachpack",9443,262,38,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9423,262,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9424,262,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9452,262,47,11]),types.vector(["bootstrap2012/function-teachpack",9464,262,59,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9451,262,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9452,262,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9565,269,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/function-teachpack",9565,269,9,15]),types.vector(["bootstrap2012/function-teachpack",9581,269,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9590,270,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9590,270,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9587,270,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9590,270,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9721,274,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/function-teachpack",9721,274,9,14]),types.vector(["bootstrap2012/function-teachpack",9736,274,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9742,275,3,13]),types.vector(["bootstrap2012/function-teachpack",9756,275,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9741,275,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9742,275,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9757,275,18,15]),types.vector(["bootstrap2012/function-teachpack",9773,275,34,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9756,275,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9757,275,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9866,281,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/function-teachpack",9866,281,9,13]),types.vector(["bootstrap2012/function-teachpack",9880,281,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9886,282,3,4]),types.vector(["bootstrap2012/function-teachpack",9891,282,8,1]),types.vector(["bootstrap2012/function-teachpack",9893,282,10,2]),types.vector(["bootstrap2012/function-teachpack",9896,282,13,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9885,282,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9886,282,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9991,286,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/function-teachpack",9991,286,9,13]),types.vector(["bootstrap2012/function-teachpack",10005,286,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10011,287,3,13]),types.vector(["bootstrap2012/function-teachpack",10025,287,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10010,287,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10011,287,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10026,287,18,14]),types.vector(["bootstrap2012/function-teachpack",10041,287,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10025,287,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10026,287,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10212,293,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/function-teachpack",10212,293,9,10]),types.vector(["bootstrap2012/function-teachpack",10223,293,20,10]),types.vector(["bootstrap2012/function-teachpack",10234,293,31,1]),types.vector(["bootstrap2012/function-teachpack",10236,293,33,1]),types.vector(["bootstrap2012/function-teachpack",10238,293,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10253,294,3,10]),types.vector(["bootstrap2012/function-teachpack",10264,294,14,10]),types.vector(["bootstrap2012/function-teachpack",10275,294,25,1]),types.vector(["bootstrap2012/function-teachpack",10277,294,27,7]),types.vector(["bootstrap2012/function-teachpack",10285,294,35,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10252,294,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10253,294,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10278,294,28,1]),types.vector(["bootstrap2012/function-teachpack",10280,294,30,1]),types.vector(["bootstrap2012/function-teachpack",10282,294,32,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10277,294,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10278,294,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10465,299,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/function-teachpack",10465,299,9,9]),types.vector(["bootstrap2012/function-teachpack",10475,299,19,10]),types.vector(["bootstrap2012/function-teachpack",10486,299,30,1]),types.vector(["bootstrap2012/function-teachpack",10488,299,32,1]),types.vector(["bootstrap2012/function-teachpack",10490,299,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10505,300,3,11]),types.vector(["bootstrap2012/function-teachpack",10517,300,15,10]),types.vector(["bootstrap2012/function-teachpack",10528,300,26,1]),types.vector(["bootstrap2012/function-teachpack",10530,300,28,31]),types.vector(["bootstrap2012/function-teachpack",10562,300,60,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10504,300,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10505,300,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10531,300,29,1]),types.vector(["bootstrap2012/function-teachpack",10533,300,31,25]),types.vector(["bootstrap2012/function-teachpack",10559,300,57,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10530,300,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10531,300,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10534,300,32,12]),types.vector(["bootstrap2012/function-teachpack",10547,300,45,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10533,300,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10534,300,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10649,303,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/function-teachpack",10649,303,9,2]),types.vector(["bootstrap2012/function-teachpack",10652,303,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10656,303,16,1]),types.vector(["bootstrap2012/function-teachpack",10658,303,18,1]),types.vector(["bootstrap2012/function-teachpack",10660,303,20,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10655,303,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10656,303,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10882,308,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/function-teachpack",10882,308,9,4]),types.vector(["bootstrap2012/function-teachpack",10887,308,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10891,308,18,3]),types.vector(["bootstrap2012/function-teachpack",10895,308,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10890,308,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10891,308,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10896,308,23,1]),types.vector(["bootstrap2012/function-teachpack",10898,308,25,1]),types.vector(["bootstrap2012/function-teachpack",10900,308,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10895,308,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10896,308,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10901,308,28,1]),types.vector(["bootstrap2012/function-teachpack",10903,308,30,2]),types.vector(["bootstrap2012/function-teachpack",10906,308,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10900,308,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10901,308,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10903,308,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11134,313,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/function-teachpack",11134,313,9,6]),types.vector(["bootstrap2012/function-teachpack",11141,313,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11145,313,20,3]),types.vector(["bootstrap2012/function-teachpack",11149,313,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11144,313,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11145,313,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11150,313,25,1]),types.vector(["bootstrap2012/function-teachpack",11152,313,27,1]),types.vector(["bootstrap2012/function-teachpack",11154,313,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11149,313,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11150,313,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11155,313,30,1]),types.vector(["bootstrap2012/function-teachpack",11157,313,32,2]),types.vector(["bootstrap2012/function-teachpack",11160,313,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11154,313,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11155,313,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11157,313,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11386,318,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/function-teachpack",11386,318,9,7]),types.vector(["bootstrap2012/function-teachpack",11394,318,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11398,318,21,3]),types.vector(["bootstrap2012/function-teachpack",11402,318,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11397,318,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11398,318,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11403,318,26,1]),types.vector(["bootstrap2012/function-teachpack",11405,318,28,1]),types.vector(["bootstrap2012/function-teachpack",11407,318,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11402,318,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11403,318,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11408,318,31,1]),types.vector(["bootstrap2012/function-teachpack",11410,318,33,2]),types.vector(["bootstrap2012/function-teachpack",11413,318,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11407,318,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11408,318,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11410,318,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11496,322,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/function-teachpack",11496,322,9,4]),types.vector(["bootstrap2012/function-teachpack",11501,322,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11509,323,3,8]),types.vector(["bootstrap2012/function-teachpack",11518,323,12,3]),types.vector(["bootstrap2012/function-teachpack",11522,323,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11508,323,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11509,323,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11523,323,17,6]),types.vector(["bootstrap2012/function-teachpack",11530,323,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11522,323,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11523,323,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11531,323,25,6]),types.vector(["bootstrap2012/function-teachpack",11538,323,32,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11530,323,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11531,323,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11653,327,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/function-teachpack",11653,327,9,7]),types.vector(["bootstrap2012/function-teachpack",11661,327,17,1]),types.vector(["bootstrap2012/function-teachpack",11663,327,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11670,328,3,6]),types.vector(["bootstrap2012/function-teachpack",11680,329,3,29]),types.vector(["bootstrap2012/function-teachpack",11713,330,3,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11669,328,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11670,328,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",11681,329,4,6]),types.vector(["bootstrap2012/function-teachpack",11689,329,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11695,329,18,6]),types.vector(["bootstrap2012/function-teachpack",11702,329,25,3]),types.vector(["bootstrap2012/function-teachpack",11706,329,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11694,329,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11695,329,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11727,332,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/function-teachpack",11727,332,9,3]),types.vector(["bootstrap2012/function-teachpack",11731,332,13,1]),types.vector(["bootstrap2012/function-teachpack",11733,332,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11739,333,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11743,333,7,5]),types.vector(["bootstrap2012/function-teachpack",11749,333,13,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11743,333,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11753,333,17,7]),types.vector(["bootstrap2012/function-teachpack",11761,333,25,1]),types.vector(["bootstrap2012/function-teachpack",11763,333,27,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11752,333,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11753,333,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11767,333,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11771,333,35,3]),types.vector(["bootstrap2012/function-teachpack",11775,333,39,12]),types.vector(["bootstrap2012/function-teachpack",11788,333,52,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11771,333,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11776,333,40,6]),types.vector(["bootstrap2012/function-teachpack",11783,333,47,1]),types.vector(["bootstrap2012/function-teachpack",11785,333,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11775,333,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11776,333,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11812,336,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/function-teachpack",11812,336,9,7]),types.vector(["bootstrap2012/function-teachpack",11820,336,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11828,337,3,7]),types.vector(["bootstrap2012/function-teachpack",11836,337,11,3]),types.vector(["bootstrap2012/function-teachpack",11840,337,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11827,337,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11828,337,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11841,337,16,9]),types.vector(["bootstrap2012/function-teachpack",11851,337,26,17]),types.vector(["bootstrap2012/function-teachpack",11869,337,44,18]),types.vector(["bootstrap2012/function-teachpack",11888,337,63,7]),types.vector(["bootstrap2012/function-teachpack",11896,337,71,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11840,337,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11841,337,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11852,337,27,11]),types.vector(["bootstrap2012/function-teachpack",11864,337,39,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11851,337,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11852,337,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11870,337,45,12]),types.vector(["bootstrap2012/function-teachpack",11883,337,58,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11869,337,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11870,337,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}}]}}, 'provides': ["pick","sq","subset?","tangent","type","start","string->image","sine","put-image","color->alpha","in?","number->image","overlay-at","cosine","boolean->string","clipart/url","boolean->image"]}; +window.COLLECTIONS["bootstrap2012/function-teachpack"] = { 'name': "bootstrap2012/function-teachpack", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"b"},{"$":"global-bucket","value":"save-image"},{"$":"global-bucket","value":"dst"},{"$":"global-bucket","value":"src"},{"$":"global-bucket","value":"img"},{"$":"global-bucket","value":"source-color"},{"$":"global-bucket","value":"destination-color"},{"$":"global-bucket","value":"start-y"},{"$":"global-bucket","value":"start-x"},{"$":"global-bucket","value":"d"},{"$":"global-bucket","value":"v"},{"$":"global-bucket","value":"c"},{"$":"global-bucket","value":"tolerance"},{"$":"global-bucket","value":"start-color"},{"$":"global-bucket","value":"imgvec"},{"$":"global-bucket","value":"good"},{"$":"global-bucket","value":"seen"},{"$":"global-bucket","value":"set!"},{"$":"global-bucket","value":"queue"},{"$":"global-bucket","value":"height"},{"$":"global-bucket","value":"width"},{"$":"global-bucket","value":"number->image"},{"$":"global-bucket","value":"rocket-add"},{"$":"global-bucket","value":"start"},{"$":"global-bucket","value":"text-add"},{"$":"global-bucket","value":"transparent-from-corner"},{"$":"global-bucket","value":"type"},{"$":"global-bucket","value":"transparent-from-corners"},{"$":"global-bucket","value":"tock"},{"$":"global-bucket","value":"subset?"},{"$":"global-bucket","value":"tangent"},{"$":"global-bucket","value":"string->image"},{"$":"global-bucket","value":"sine"},{"$":"global-bucket","value":"source"},{"$":"global-bucket","value":"sq"},{"$":"global-bucket","value":"save-clipart"},{"$":"global-bucket","value":"put-image"},{"$":"global-bucket","value":"replace-color"},{"$":"global-bucket","value":"overlay-at"},{"$":"global-bucket","value":"pick"},{"$":"global-bucket","value":"on-blue"},{"$":"global-bucket","value":"draw-world"},{"$":"global-bucket","value":"imgvec-adjacent-points"},{"$":"global-bucket","value":"imgvec-location"},{"$":"global-bucket","value":"in?"},{"$":"global-bucket","value":"find-color"},{"$":"global-bucket","value":"fill-from-point!"},{"$":"global-bucket","value":"color->alpha"},{"$":"global-bucket","value":"color-near?"},{"$":"global-bucket","value":"color=?"},{"$":"global-bucket","value":"cosine"},{"$":"global-bucket","value":"color-connected-points"},{"$":"global-bucket","value":"IMAGE0"},{"$":"global-bucket","value":"boolean->string"},{"$":"global-bucket","value":"clipart/url"},{"$":"global-bucket","value":"WIDTH"},{"$":"global-bucket","value":"boolean->image"},{"$":"global-bucket","value":"ROCKET"},{"$":"global-bucket","value":"HEIGHT"},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("throw-cond-exhausted-error"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("text"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("symbol?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("tan"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("struct?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sin"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number->string"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("posn?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("rectangle"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("remainder"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("put-pinhole"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("random"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-redraw"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("place-image"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pi"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay/xy"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("pair?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("overlay"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("on-key"),"modidx":{"$":"module-path","path":"moby/world-handlers","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("name->color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("member"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-color"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("key=?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-height"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image?"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image-width"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("for-each"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-ref"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("image->color-list"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("hash-set!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("floor"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("filter"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("car"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-green"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("eq?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("empty-scene"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cons"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cos"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-red"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-list->bitmap"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-alpha"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("color-blue"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("cdr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("big-bang"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("boolean?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("bitmap/url"),"modidx":{"$":"module-path","path":"moby/world","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("abs"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol(">="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("-"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("/"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("<"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("+"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("*"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",418,18,8,5])}],"body":{"$":"constant","value":200}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",438,19,8,6])}],"body":{"$":"constant","value":600}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",458,20,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",466,20,16,11]),types.vector(["bootstrap2012/function-teachpack",478,20,28,5]),types.vector(["bootstrap2012/function-teachpack",484,20,34,6]),types.vector(["bootstrap2012/function-teachpack",465,20,15,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",465,20,15,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",466,20,16,11])},"rands":[{"$":"toplevel","depth":2,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",478,20,28,5])},{"$":"toplevel","depth":2,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",484,20,34,6])}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",502,22,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",510,22,16,10]),types.vector(["bootstrap2012/function-teachpack",521,22,27,58]),types.vector(["bootstrap2012/function-teachpack",509,22,15,71])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",509,22,15,71])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",510,22,16,10])},"rands":[{"$":"constant","value":"http://www.wescheme.org/images/teachpacks2012/rocket.png"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",590,23,8,6])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",598,23,16,11]),types.vector(["bootstrap2012/function-teachpack",610,23,28,6]),types.vector(["bootstrap2012/function-teachpack",617,23,35,26]),types.vector(["bootstrap2012/function-teachpack",644,23,62,21]),types.vector(["bootstrap2012/function-teachpack",597,23,15,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",597,23,15,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",598,23,16,11])},"rands":[{"$":"toplevel","depth":3,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",610,23,28,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",618,23,36,1]),types.vector(["bootstrap2012/function-teachpack",620,23,38,20]),types.vector(["bootstrap2012/function-teachpack",641,23,59,1]),types.vector(["bootstrap2012/function-teachpack",617,23,35,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",617,23,35,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",618,23,36,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",621,23,39,11]),types.vector(["bootstrap2012/function-teachpack",633,23,51,6]),types.vector(["bootstrap2012/function-teachpack",620,23,38,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",620,23,38,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",621,23,39,11])},"rands":[{"$":"toplevel","depth":6,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",633,23,51,6])}]}}},{"$":"constant","value":2}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",645,23,63,12]),types.vector(["bootstrap2012/function-teachpack",658,23,76,6]),types.vector(["bootstrap2012/function-teachpack",644,23,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",644,23,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",645,23,63,12])},"rands":[{"$":"toplevel","depth":4,"pos":34,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",658,23,76,6])}]}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",837,28,9,10])}],"body":{"$":"lam","name":types.symbol("draw-world"),"locs":[types.vector(["bootstrap2012/function-teachpack",837,28,9,10]),types.vector(["bootstrap2012/function-teachpack",848,28,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",854,29,3,8]),types.vector(["bootstrap2012/function-teachpack",863,29,12,7]),types.vector(["bootstrap2012/function-teachpack",871,29,20,17]),types.vector(["bootstrap2012/function-teachpack",889,29,38,21]),types.vector(["bootstrap2012/function-teachpack",853,29,2,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",853,29,2,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",854,29,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",864,29,13,3]),types.vector(["bootstrap2012/function-teachpack",868,29,17,1]),types.vector(["bootstrap2012/function-teachpack",863,29,12,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",863,29,12,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",864,29,13,3])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",872,29,21,7]),types.vector(["bootstrap2012/function-teachpack",880,29,29,7]),types.vector(["bootstrap2012/function-teachpack",871,29,20,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",871,29,20,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",873,29,22,3]),types.vector(["bootstrap2012/function-teachpack",877,29,26,1]),types.vector(["bootstrap2012/function-teachpack",872,29,21,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",872,29,21,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",873,29,22,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",881,29,30,3]),types.vector(["bootstrap2012/function-teachpack",885,29,34,1]),types.vector(["bootstrap2012/function-teachpack",880,29,29,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",880,29,29,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",881,29,30,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",890,29,39,10]),types.vector(["bootstrap2012/function-teachpack",901,29,50,1]),types.vector(["bootstrap2012/function-teachpack",903,29,52,6]),types.vector(["bootstrap2012/function-teachpack",889,29,38,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",889,29,38,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",890,29,39,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":5,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",903,29,52,6])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":25,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1025,33,9,8])}],"body":{"$":"lam","name":types.symbol("text-add"),"locs":[types.vector(["bootstrap2012/function-teachpack",1025,33,9,8]),types.vector(["bootstrap2012/function-teachpack",1034,33,18,4]),types.vector(["bootstrap2012/function-teachpack",1039,33,23,6]),types.vector(["bootstrap2012/function-teachpack",1046,33,30,6])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1057,34,3,11]),types.vector(["bootstrap2012/function-teachpack",1069,34,15,79]),types.vector(["bootstrap2012/function-teachpack",1164,35,15,2]),types.vector(["bootstrap2012/function-teachpack",1183,36,15,1]),types.vector(["bootstrap2012/function-teachpack",1201,37,15,194]),types.vector(["bootstrap2012/function-teachpack",1056,34,2,340])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1056,34,2,340])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1057,34,3,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1070,34,16,4]),types.vector(["bootstrap2012/function-teachpack",1075,34,21,46]),types.vector(["bootstrap2012/function-teachpack",1122,34,68,2]),types.vector(["bootstrap2012/function-teachpack",1125,34,71,22]),types.vector(["bootstrap2012/function-teachpack",1069,34,15,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1069,34,15,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1070,34,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1076,34,22,13]),types.vector(["bootstrap2012/function-teachpack",1090,34,36,8]),types.vector(["bootstrap2012/function-teachpack",1099,34,45,21]),types.vector(["bootstrap2012/function-teachpack",1075,34,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1075,34,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1076,34,22,13])},"rands":[{"$":"constant","value":"Time: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1100,34,46,14]),types.vector(["bootstrap2012/function-teachpack",1115,34,61,4]),types.vector(["bootstrap2012/function-teachpack",1099,34,45,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1099,34,45,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1100,34,46,14])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1126,34,72,10]),types.vector(["bootstrap2012/function-teachpack",1137,34,83,2]),types.vector(["bootstrap2012/function-teachpack",1140,34,86,3]),types.vector(["bootstrap2012/function-teachpack",1144,34,90,2]),types.vector(["bootstrap2012/function-teachpack",1125,34,71,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1125,34,71,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1126,34,72,10])},"rands":[{"$":"constant","value":41},{"$":"constant","value":128},{"$":"constant","value":38}]}}}]}}},{"$":"constant","value":67},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1202,37,16,11]),types.vector(["bootstrap2012/function-teachpack",1214,37,28,83]),types.vector(["bootstrap2012/function-teachpack",1326,38,28,2]),types.vector(["bootstrap2012/function-teachpack",1357,39,28,2]),types.vector(["bootstrap2012/function-teachpack",1388,40,28,6]),types.vector(["bootstrap2012/function-teachpack",1201,37,15,194])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1201,37,15,194])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1202,37,16,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1215,37,29,4]),types.vector(["bootstrap2012/function-teachpack",1220,37,34,50]),types.vector(["bootstrap2012/function-teachpack",1271,37,85,2]),types.vector(["bootstrap2012/function-teachpack",1274,37,88,22]),types.vector(["bootstrap2012/function-teachpack",1214,37,28,83])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1214,37,28,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1215,37,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1221,37,35,13]),types.vector(["bootstrap2012/function-teachpack",1235,37,49,10]),types.vector(["bootstrap2012/function-teachpack",1246,37,60,23]),types.vector(["bootstrap2012/function-teachpack",1220,37,34,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1220,37,34,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":13,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1221,37,35,13])},"rands":[{"$":"constant","value":"Height: "},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1247,37,61,14]),types.vector(["bootstrap2012/function-teachpack",1262,37,76,6]),types.vector(["bootstrap2012/function-teachpack",1246,37,60,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1246,37,60,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1247,37,61,14])},"rands":[{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":14},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1275,37,89,10]),types.vector(["bootstrap2012/function-teachpack",1286,37,100,2]),types.vector(["bootstrap2012/function-teachpack",1289,37,103,2]),types.vector(["bootstrap2012/function-teachpack",1292,37,106,3]),types.vector(["bootstrap2012/function-teachpack",1274,37,88,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1274,37,88,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1275,37,89,10])},"rands":[{"$":"constant","value":38},{"$":"constant","value":38},{"$":"constant","value":128}]}}}]}}},{"$":"constant","value":60},{"$":"constant","value":20},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1526,44,9,10])}],"body":{"$":"lam","name":types.symbol("rocket-add"),"locs":[types.vector(["bootstrap2012/function-teachpack",1526,44,9,10]),types.vector(["bootstrap2012/function-teachpack",1537,44,20,1]),types.vector(["bootstrap2012/function-teachpack",1539,44,22,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1561,46,6,2]),types.vector(["bootstrap2012/function-teachpack",1564,46,9,21]),types.vector(["bootstrap2012/function-teachpack",1586,46,31,28]),types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1561,46,6,2])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1565,46,10,12]),types.vector(["bootstrap2012/function-teachpack",1578,46,23,6]),types.vector(["bootstrap2012/function-teachpack",1564,46,9,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1564,46,9,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1565,46,10,12])},"rands":[{"$":"toplevel","depth":7,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1578,46,23,6])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1587,46,32,1]),types.vector(["bootstrap2012/function-teachpack",1589,46,34,6]),types.vector(["bootstrap2012/function-teachpack",1596,46,41,17]),types.vector(["bootstrap2012/function-teachpack",1586,46,31,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1586,46,31,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1587,46,32,1])},"rands":[{"$":"toplevel","depth":8,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1589,46,34,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1597,46,42,7]),types.vector(["bootstrap2012/function-teachpack",1605,46,50,7]),types.vector(["bootstrap2012/function-teachpack",1596,46,41,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1596,46,41,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1598,46,43,3]),types.vector(["bootstrap2012/function-teachpack",1602,46,47,1]),types.vector(["bootstrap2012/function-teachpack",1597,46,42,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1597,46,42,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1598,46,43,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1606,46,51,3]),types.vector(["bootstrap2012/function-teachpack",1610,46,55,1]),types.vector(["bootstrap2012/function-teachpack",1605,46,50,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1605,46,50,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1606,46,51,3])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1560,46,5,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1622,47,6,11]),types.vector(["bootstrap2012/function-teachpack",1634,47,18,6]),types.vector(["bootstrap2012/function-teachpack",1641,47,25,3]),types.vector(["bootstrap2012/function-teachpack",1645,47,29,3]),types.vector(["bootstrap2012/function-teachpack",1649,47,33,6]),types.vector(["bootstrap2012/function-teachpack",1621,47,5,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1621,47,5,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1622,47,6,11])},"rands":[{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1634,47,18,6])},{"$":"constant","value":100},{"$":"constant","value":200},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4]),types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])},{"$":"toplevel","depth":4,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1663,48,5,4])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1669,48,11,11]),types.vector(["bootstrap2012/function-teachpack",1681,48,23,6]),types.vector(["bootstrap2012/function-teachpack",1688,48,30,3]),types.vector(["bootstrap2012/function-teachpack",1692,48,34,28]),types.vector(["bootstrap2012/function-teachpack",1721,48,63,6]),types.vector(["bootstrap2012/function-teachpack",1668,48,10,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1668,48,10,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1669,48,11,11])},"rands":[{"$":"toplevel","depth":4,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1681,48,23,6])},{"$":"constant","value":100},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1693,48,35,1]),types.vector(["bootstrap2012/function-teachpack",1695,48,37,6]),types.vector(["bootstrap2012/function-teachpack",1702,48,44,17]),types.vector(["bootstrap2012/function-teachpack",1692,48,34,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1692,48,34,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1693,48,35,1])},"rands":[{"$":"toplevel","depth":6,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1695,48,37,6])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1703,48,45,7]),types.vector(["bootstrap2012/function-teachpack",1711,48,53,7]),types.vector(["bootstrap2012/function-teachpack",1702,48,44,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1702,48,44,17])},"body":{"$":"application","rator":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1704,48,46,3]),types.vector(["bootstrap2012/function-teachpack",1708,48,50,1]),types.vector(["bootstrap2012/function-teachpack",1703,48,45,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1703,48,45,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1704,48,46,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1712,48,54,3]),types.vector(["bootstrap2012/function-teachpack",1716,48,58,1]),types.vector(["bootstrap2012/function-teachpack",1711,48,53,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1711,48,53,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1712,48,54,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1549,45,2,181]),types.vector(["bootstrap2012/function-teachpack",1549,45,2,181]),types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1549,45,2,181])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1841,53,9,4])}],"body":{"$":"lam","name":types.symbol("tock"),"locs":[types.vector(["bootstrap2012/function-teachpack",1841,53,9,4]),types.vector(["bootstrap2012/function-teachpack",1846,53,14,1]),types.vector(["bootstrap2012/function-teachpack",1848,53,16,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1866,55,6,5]),types.vector(["bootstrap2012/function-teachpack",1872,55,12,2]),types.vector(["bootstrap2012/function-teachpack",1875,55,15,7]),types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1866,55,6,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types['char'](String.fromCharCode(32))}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1865,55,5,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1885,55,25,4]),types.vector(["bootstrap2012/function-teachpack",1890,55,30,13]),types.vector(["bootstrap2012/function-teachpack",1904,55,44,7]),types.vector(["bootstrap2012/function-teachpack",1884,55,24,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1884,55,24,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1885,55,25,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1891,55,31,1]),types.vector(["bootstrap2012/function-teachpack",1893,55,33,1]),types.vector(["bootstrap2012/function-teachpack",1895,55,35,7]),types.vector(["bootstrap2012/function-teachpack",1890,55,30,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1890,55,30,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1891,55,31,1])},"rands":[{"$":"constant","value":1},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1896,55,36,3]),types.vector(["bootstrap2012/function-teachpack",1900,55,40,1]),types.vector(["bootstrap2012/function-teachpack",1895,55,35,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1895,55,35,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1896,55,36,3])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1905,55,45,3]),types.vector(["bootstrap2012/function-teachpack",1909,55,49,1]),types.vector(["bootstrap2012/function-teachpack",1904,55,44,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1904,55,44,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1905,55,45,3])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4]),types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])},{"$":"toplevel","depth":4,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1919,56,5,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1854,54,2,73]),types.vector(["bootstrap2012/function-teachpack",1854,54,2,73]),types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1854,54,2,73])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":24,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1939,58,9,5])}],"body":{"$":"lam","name":types.symbol("start"),"locs":[types.vector(["bootstrap2012/function-teachpack",1939,58,9,5]),types.vector(["bootstrap2012/function-teachpack",1945,58,15,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1963,59,3,8]),types.vector(["bootstrap2012/function-teachpack",1972,59,12,22]),types.vector(["bootstrap2012/function-teachpack",2000,60,12,13]),types.vector(["bootstrap2012/function-teachpack",2019,61,12,22]),types.vector(["bootstrap2012/function-teachpack",1962,59,2,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1962,59,2,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1963,59,3,8])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",1973,59,13,4]),types.vector(["bootstrap2012/function-teachpack",1978,59,18,1]),types.vector(["bootstrap2012/function-teachpack",1980,59,20,13]),types.vector(["bootstrap2012/function-teachpack",1972,59,12,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",1972,59,12,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",1973,59,13,4])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",2001,60,13,6]),types.vector(["bootstrap2012/function-teachpack",2008,60,20,4]),types.vector(["bootstrap2012/function-teachpack",2000,60,12,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",2000,60,12,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",2001,60,13,6])},"rands":[{"$":"toplevel","depth":4,"pos":29,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",2008,60,20,4])}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",2020,61,13,9]),types.vector(["bootstrap2012/function-teachpack",2030,61,23,10]),types.vector(["bootstrap2012/function-teachpack",2019,61,12,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",2019,61,12,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",2020,61,13,9])},"rands":[{"$":"toplevel","depth":4,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",2030,61,23,10])}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":27,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3570,113,9,4])}],"body":{"$":"lam","name":types.symbol("type"),"locs":[types.vector(["bootstrap2012/function-teachpack",3570,113,9,4]),types.vector(["bootstrap2012/function-teachpack",3575,113,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3593,115,5,10]),types.vector(["bootstrap2012/function-teachpack",3604,115,16,3]),types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3593,115,5,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3592,115,4,16])}]}}},"then":{"$":"constant","value":"Function"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3626,116,5,7]),types.vector(["bootstrap2012/function-teachpack",3634,116,13,3]),types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3626,116,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3625,116,4,13])}]}}},"then":{"$":"constant","value":"Number"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3654,117,5,7]),types.vector(["bootstrap2012/function-teachpack",3662,117,13,3]),types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3654,117,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3653,117,4,13])}]}}},"then":{"$":"constant","value":"String"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3682,118,5,6]),types.vector(["bootstrap2012/function-teachpack",3689,118,12,3]),types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3682,118,5,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3681,118,4,12])}]}}},"then":{"$":"constant","value":"Image"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3708,119,5,8]),types.vector(["bootstrap2012/function-teachpack",3717,119,14,3]),types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3708,119,5,8])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3707,119,4,14])}]}}},"then":{"$":"constant","value":"Boolean"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3738,120,5,5]),types.vector(["bootstrap2012/function-teachpack",3744,120,11,3]),types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3738,120,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3737,120,4,11])}]}}},"then":{"$":"constant","value":"Position"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3766,121,5,7]),types.vector(["bootstrap2012/function-teachpack",3774,121,13,3]),types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3766,121,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3765,121,4,13])}]}}},"then":{"$":"constant","value":"Symbol"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3794,122,5,5]),types.vector(["bootstrap2012/function-teachpack",3800,122,11,3]),types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3794,122,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3793,122,4,11])}]}}},"then":{"$":"constant","value":"List"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3818,123,5,5]),types.vector(["bootstrap2012/function-teachpack",3824,123,11,3]),types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3818,123,5,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3817,123,4,11])}]}}},"then":{"$":"constant","value":"Pair"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3842,124,5,7]),types.vector(["bootstrap2012/function-teachpack",3850,124,13,3]),types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3842,124,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3841,124,4,13])}]}}},"then":{"$":"constant","value":"Structure"},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4]),types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},{"$":"toplevel","depth":4,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3872,125,4,4])}]}}},"then":{"$":"constant","value":"I don't know."},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",3582,114,2,312]),types.vector(["bootstrap2012/function-teachpack",3582,114,2,312]),types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",3582,114,2,312])}]}}}}}}}}}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4361,136,9,11])}],"body":{"$":"lam","name":types.symbol("color-near?"),"locs":[types.vector(["bootstrap2012/function-teachpack",4361,136,9,11]),types.vector(["bootstrap2012/function-teachpack",4373,136,21,1]),types.vector(["bootstrap2012/function-teachpack",4375,136,23,1]),types.vector(["bootstrap2012/function-teachpack",4377,136,25,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4391,137,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4396,137,8,1]),types.vector(["bootstrap2012/function-teachpack",4398,137,10,41]),types.vector(["bootstrap2012/function-teachpack",4440,137,52,9]),types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4396,137,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4399,137,11,3]),types.vector(["bootstrap2012/function-teachpack",4403,137,15,35]),types.vector(["bootstrap2012/function-teachpack",4398,137,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4398,137,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4399,137,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4404,137,16,1]),types.vector(["bootstrap2012/function-teachpack",4406,137,18,15]),types.vector(["bootstrap2012/function-teachpack",4422,137,34,15]),types.vector(["bootstrap2012/function-teachpack",4403,137,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4403,137,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4404,137,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4407,137,19,9]),types.vector(["bootstrap2012/function-teachpack",4419,137,31,1]),types.vector(["bootstrap2012/function-teachpack",4406,137,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4406,137,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4407,137,19,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4423,137,35,9]),types.vector(["bootstrap2012/function-teachpack",4435,137,47,1]),types.vector(["bootstrap2012/function-teachpack",4422,137,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4422,137,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4423,137,35,9])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4395,137,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4391,137,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4459,138,8,1]),types.vector(["bootstrap2012/function-teachpack",4461,138,10,41]),types.vector(["bootstrap2012/function-teachpack",4503,138,52,9]),types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4459,138,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4462,138,11,3]),types.vector(["bootstrap2012/function-teachpack",4466,138,15,35]),types.vector(["bootstrap2012/function-teachpack",4461,138,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4461,138,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4462,138,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4467,138,16,1]),types.vector(["bootstrap2012/function-teachpack",4469,138,18,15]),types.vector(["bootstrap2012/function-teachpack",4485,138,34,15]),types.vector(["bootstrap2012/function-teachpack",4466,138,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4466,138,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4467,138,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4470,138,19,11]),types.vector(["bootstrap2012/function-teachpack",4482,138,31,1]),types.vector(["bootstrap2012/function-teachpack",4469,138,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4469,138,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4470,138,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4486,138,35,11]),types.vector(["bootstrap2012/function-teachpack",4498,138,47,1]),types.vector(["bootstrap2012/function-teachpack",4485,138,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4485,138,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4486,138,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4458,138,7,55])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4391,137,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4522,139,8,1]),types.vector(["bootstrap2012/function-teachpack",4524,139,10,41]),types.vector(["bootstrap2012/function-teachpack",4566,139,52,9]),types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4522,139,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4525,139,11,3]),types.vector(["bootstrap2012/function-teachpack",4529,139,15,35]),types.vector(["bootstrap2012/function-teachpack",4524,139,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4524,139,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4525,139,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4530,139,16,1]),types.vector(["bootstrap2012/function-teachpack",4532,139,18,15]),types.vector(["bootstrap2012/function-teachpack",4548,139,34,15]),types.vector(["bootstrap2012/function-teachpack",4529,139,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4529,139,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4530,139,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4533,139,19,10]),types.vector(["bootstrap2012/function-teachpack",4545,139,31,1]),types.vector(["bootstrap2012/function-teachpack",4532,139,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4532,139,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4533,139,19,10])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4549,139,35,10]),types.vector(["bootstrap2012/function-teachpack",4561,139,47,1]),types.vector(["bootstrap2012/function-teachpack",4548,139,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4548,139,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4549,139,35,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4521,139,7,55])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4391,137,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4585,140,8,1]),types.vector(["bootstrap2012/function-teachpack",4587,140,10,41]),types.vector(["bootstrap2012/function-teachpack",4629,140,52,9]),types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4585,140,8,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4588,140,11,3]),types.vector(["bootstrap2012/function-teachpack",4592,140,15,35]),types.vector(["bootstrap2012/function-teachpack",4587,140,10,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4587,140,10,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4588,140,11,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4593,140,16,1]),types.vector(["bootstrap2012/function-teachpack",4595,140,18,15]),types.vector(["bootstrap2012/function-teachpack",4611,140,34,15]),types.vector(["bootstrap2012/function-teachpack",4592,140,15,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4592,140,15,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4593,140,16,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4596,140,19,11]),types.vector(["bootstrap2012/function-teachpack",4608,140,31,1]),types.vector(["bootstrap2012/function-teachpack",4595,140,18,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4595,140,18,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4596,140,19,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4612,140,35,11]),types.vector(["bootstrap2012/function-teachpack",4624,140,47,1]),types.vector(["bootstrap2012/function-teachpack",4611,140,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4611,140,34,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4612,140,35,11])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4584,140,7,55])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4734,144,9,7])}],"body":{"$":"lam","name":types.symbol("color=?"),"locs":[types.vector(["bootstrap2012/function-teachpack",4734,144,9,7]),types.vector(["bootstrap2012/function-teachpack",4742,144,17,1]),types.vector(["bootstrap2012/function-teachpack",4744,144,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4750,145,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4755,145,8,6]),types.vector(["bootstrap2012/function-teachpack",4762,145,15,15]),types.vector(["bootstrap2012/function-teachpack",4778,145,31,15]),types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4755,145,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4763,145,16,9]),types.vector(["bootstrap2012/function-teachpack",4775,145,28,1]),types.vector(["bootstrap2012/function-teachpack",4762,145,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4762,145,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4763,145,16,9])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4779,145,32,9]),types.vector(["bootstrap2012/function-teachpack",4791,145,44,1]),types.vector(["bootstrap2012/function-teachpack",4778,145,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4778,145,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4779,145,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4754,145,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4750,145,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4803,146,8,6]),types.vector(["bootstrap2012/function-teachpack",4810,146,15,15]),types.vector(["bootstrap2012/function-teachpack",4826,146,31,15]),types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4803,146,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4811,146,16,11]),types.vector(["bootstrap2012/function-teachpack",4823,146,28,1]),types.vector(["bootstrap2012/function-teachpack",4810,146,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4810,146,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4811,146,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4827,146,32,11]),types.vector(["bootstrap2012/function-teachpack",4839,146,44,1]),types.vector(["bootstrap2012/function-teachpack",4826,146,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4826,146,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4827,146,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4802,146,7,40])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4750,145,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4851,147,8,6]),types.vector(["bootstrap2012/function-teachpack",4858,147,15,15]),types.vector(["bootstrap2012/function-teachpack",4874,147,31,15]),types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4851,147,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4859,147,16,10]),types.vector(["bootstrap2012/function-teachpack",4871,147,28,1]),types.vector(["bootstrap2012/function-teachpack",4858,147,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4858,147,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4859,147,16,10])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4875,147,32,10]),types.vector(["bootstrap2012/function-teachpack",4887,147,44,1]),types.vector(["bootstrap2012/function-teachpack",4874,147,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4874,147,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4875,147,32,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4850,147,7,40])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4750,145,3,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4899,148,8,6]),types.vector(["bootstrap2012/function-teachpack",4906,148,15,15]),types.vector(["bootstrap2012/function-teachpack",4922,148,31,15]),types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4899,148,8,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4907,148,16,11]),types.vector(["bootstrap2012/function-teachpack",4919,148,28,1]),types.vector(["bootstrap2012/function-teachpack",4906,148,15,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4906,148,15,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4907,148,16,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",4923,148,32,11]),types.vector(["bootstrap2012/function-teachpack",4935,148,44,1]),types.vector(["bootstrap2012/function-teachpack",4922,148,31,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4922,148,31,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",4923,148,32,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",4898,148,7,40])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5487,161,9,10])}],"body":{"$":"lam","name":types.symbol("find-color"),"locs":[types.vector(["bootstrap2012/function-teachpack",5487,161,9,10]),types.vector(["bootstrap2012/function-teachpack",5498,161,20,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5514,163,5,7]),types.vector(["bootstrap2012/function-teachpack",5522,163,13,1]),types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5514,163,5,7])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5513,163,4,11])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5530,164,5,11]),types.vector(["bootstrap2012/function-teachpack",5542,164,17,1]),types.vector(["bootstrap2012/function-teachpack",5529,164,4,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5529,164,4,15])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5530,164,5,11])},"rands":[{"$":"localref","unbox?":false,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4]),types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])},{"$":"toplevel","depth":4,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5550,165,4,4])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5503,162,2,59]),types.vector(["bootstrap2012/function-teachpack",5503,162,2,59]),types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])},"rands":[{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5503,162,2,59])}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5575,169,9,15])}],"body":{"$":"lam","name":types.symbol("imgvec-location"),"locs":[types.vector(["bootstrap2012/function-teachpack",5575,169,9,15]),types.vector(["bootstrap2012/function-teachpack",5591,169,25,1]),types.vector(["bootstrap2012/function-teachpack",5593,169,27,1]),types.vector(["bootstrap2012/function-teachpack",5595,169,29,1]),types.vector(["bootstrap2012/function-teachpack",5597,169,31,1])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5603,170,3,1]),types.vector(["bootstrap2012/function-teachpack",5605,170,5,7]),types.vector(["bootstrap2012/function-teachpack",5613,170,13,1]),types.vector(["bootstrap2012/function-teachpack",5602,170,2,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5602,170,2,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5603,170,3,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5606,170,6,1]),types.vector(["bootstrap2012/function-teachpack",5608,170,8,1]),types.vector(["bootstrap2012/function-teachpack",5610,170,10,1]),types.vector(["bootstrap2012/function-teachpack",5605,170,5,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5605,170,5,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5606,170,6,1])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5627,172,9,22])}],"body":{"$":"lam","name":types.symbol("imgvec-adjacent-points"),"locs":[types.vector(["bootstrap2012/function-teachpack",5627,172,9,22]),types.vector(["bootstrap2012/function-teachpack",5650,172,32,6]),types.vector(["bootstrap2012/function-teachpack",5657,172,39,3]),types.vector(["bootstrap2012/function-teachpack",5661,172,43,5]),types.vector(["bootstrap2012/function-teachpack",5667,172,49,6])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5677,173,2,345]),types.vector(["bootstrap2012/function-teachpack",5686,173,11,21]),types.vector(["bootstrap2012/function-teachpack",5720,174,11,21]),types.vector(["bootstrap2012/function-teachpack",5756,175,13,49]),types.vector(["bootstrap2012/function-teachpack",5677,173,2,345])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5677,173,2,345])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",5677,173,2,345]),types.vector(["bootstrap2012/function-teachpack",5684,173,9,1]),types.vector(["bootstrap2012/function-teachpack",5718,174,9,1]),types.vector(["bootstrap2012/function-teachpack",5752,175,9,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5813,176,5,6]),types.vector(["bootstrap2012/function-teachpack",5825,177,5,39]),types.vector(["bootstrap2012/function-teachpack",5870,178,5,39]),types.vector(["bootstrap2012/function-teachpack",5915,179,5,49]),types.vector(["bootstrap2012/function-teachpack",5970,180,5,50]),types.vector(["bootstrap2012/function-teachpack",5812,176,4,209])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5812,176,4,209])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5813,176,5,6])},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5826,177,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5830,177,10,1]),types.vector(["bootstrap2012/function-teachpack",5832,177,12,1]),types.vector(["bootstrap2012/function-teachpack",5834,177,14,1]),types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5830,177,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5829,177,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5838,177,18,4]),types.vector(["bootstrap2012/function-teachpack",5843,177,23,15]),types.vector(["bootstrap2012/function-teachpack",5837,177,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5837,177,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5838,177,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5844,177,24,3]),types.vector(["bootstrap2012/function-teachpack",5848,177,28,7]),types.vector(["bootstrap2012/function-teachpack",5856,177,36,1]),types.vector(["bootstrap2012/function-teachpack",5843,177,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5843,177,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5849,177,29,1]),types.vector(["bootstrap2012/function-teachpack",5851,177,31,1]),types.vector(["bootstrap2012/function-teachpack",5853,177,33,1]),types.vector(["bootstrap2012/function-teachpack",5848,177,28,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5848,177,28,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5849,177,29,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5871,178,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5875,178,10,1]),types.vector(["bootstrap2012/function-teachpack",5877,178,12,1]),types.vector(["bootstrap2012/function-teachpack",5879,178,14,1]),types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5875,178,10,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5874,178,9,7])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5883,178,18,4]),types.vector(["bootstrap2012/function-teachpack",5888,178,23,15]),types.vector(["bootstrap2012/function-teachpack",5882,178,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5882,178,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5883,178,18,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5889,178,24,3]),types.vector(["bootstrap2012/function-teachpack",5893,178,28,1]),types.vector(["bootstrap2012/function-teachpack",5895,178,30,7]),types.vector(["bootstrap2012/function-teachpack",5888,178,23,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5888,178,23,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5896,178,31,1]),types.vector(["bootstrap2012/function-teachpack",5898,178,33,1]),types.vector(["bootstrap2012/function-teachpack",5900,178,35,1]),types.vector(["bootstrap2012/function-teachpack",5895,178,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5895,178,30,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5896,178,31,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5916,179,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5920,179,10,1]),types.vector(["bootstrap2012/function-teachpack",5922,179,12,1]),types.vector(["bootstrap2012/function-teachpack",5924,179,14,11]),types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5920,179,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5925,179,15,1]),types.vector(["bootstrap2012/function-teachpack",5927,179,17,5]),types.vector(["bootstrap2012/function-teachpack",5933,179,23,1]),types.vector(["bootstrap2012/function-teachpack",5924,179,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5924,179,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5925,179,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5919,179,9,17])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5938,179,28,4]),types.vector(["bootstrap2012/function-teachpack",5943,179,33,15]),types.vector(["bootstrap2012/function-teachpack",5937,179,27,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5937,179,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5938,179,28,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5944,179,34,3]),types.vector(["bootstrap2012/function-teachpack",5948,179,38,7]),types.vector(["bootstrap2012/function-teachpack",5956,179,46,1]),types.vector(["bootstrap2012/function-teachpack",5943,179,33,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5943,179,33,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5949,179,39,1]),types.vector(["bootstrap2012/function-teachpack",5951,179,41,1]),types.vector(["bootstrap2012/function-teachpack",5953,179,43,1]),types.vector(["bootstrap2012/function-teachpack",5948,179,38,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5948,179,38,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5949,179,39,1])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5971,180,6,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5975,180,10,1]),types.vector(["bootstrap2012/function-teachpack",5977,180,12,1]),types.vector(["bootstrap2012/function-teachpack",5979,180,14,12]),types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5975,180,10,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5980,180,15,1]),types.vector(["bootstrap2012/function-teachpack",5982,180,17,6]),types.vector(["bootstrap2012/function-teachpack",5989,180,24,1]),types.vector(["bootstrap2012/function-teachpack",5979,180,14,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5979,180,14,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":12,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5980,180,15,1])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5974,180,9,18])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5994,180,29,4]),types.vector(["bootstrap2012/function-teachpack",5999,180,34,15]),types.vector(["bootstrap2012/function-teachpack",5993,180,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5993,180,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5994,180,29,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6000,180,35,3]),types.vector(["bootstrap2012/function-teachpack",6004,180,39,1]),types.vector(["bootstrap2012/function-teachpack",6006,180,41,7]),types.vector(["bootstrap2012/function-teachpack",5999,180,34,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5999,180,34,15])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6007,180,42,1]),types.vector(["bootstrap2012/function-teachpack",6009,180,44,1]),types.vector(["bootstrap2012/function-teachpack",6011,180,46,1]),types.vector(["bootstrap2012/function-teachpack",6006,180,41,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6006,180,41,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6007,180,42,1])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":1}]}}}]}}}]}}},"else":{"$":"constant","value":types.EMPTY}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5687,173,12,9]),types.vector(["bootstrap2012/function-teachpack",5697,173,22,3]),types.vector(["bootstrap2012/function-teachpack",5701,173,26,5]),types.vector(["bootstrap2012/function-teachpack",5686,173,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5686,173,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5687,173,12,9])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5721,174,12,5]),types.vector(["bootstrap2012/function-teachpack",5727,174,18,13]),types.vector(["bootstrap2012/function-teachpack",5720,174,11,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5720,174,11,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5721,174,12,5])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5728,174,19,1]),types.vector(["bootstrap2012/function-teachpack",5730,174,21,3]),types.vector(["bootstrap2012/function-teachpack",5734,174,25,5]),types.vector(["bootstrap2012/function-teachpack",5727,174,18,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5727,174,18,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5728,174,19,1])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",5757,175,14,6]),types.vector(["bootstrap2012/function-teachpack",5765,175,22,1]),types.vector(["bootstrap2012/function-teachpack",5767,175,24,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",5771,175,28,15]),types.vector(["bootstrap2012/function-teachpack",5787,175,44,1]),types.vector(["bootstrap2012/function-teachpack",5789,175,46,1]),types.vector(["bootstrap2012/function-teachpack",5791,175,48,5]),types.vector(["bootstrap2012/function-teachpack",5797,175,54,6]),types.vector(["bootstrap2012/function-teachpack",5770,175,27,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",5770,175,27,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",5771,175,28,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6034,182,9,22])}],"body":{"$":"lam","name":types.symbol("color-connected-points"),"locs":[types.vector(["bootstrap2012/function-teachpack",6034,182,9,22]),types.vector(["bootstrap2012/function-teachpack",6057,182,32,6]),types.vector(["bootstrap2012/function-teachpack",6064,182,39,5]),types.vector(["bootstrap2012/function-teachpack",6070,182,45,6]),types.vector(["bootstrap2012/function-teachpack",6077,182,52,7]),types.vector(["bootstrap2012/function-teachpack",6085,182,60,7]),types.vector(["bootstrap2012/function-teachpack",6093,182,68,11]),types.vector(["bootstrap2012/function-teachpack",6105,182,80,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6118,183,2,973]),types.vector(["bootstrap2012/function-teachpack",6131,183,15,53]),types.vector(["bootstrap2012/function-teachpack",6200,184,14,11]),types.vector(["bootstrap2012/function-teachpack",6227,185,14,3]),types.vector(["bootstrap2012/function-teachpack",6118,183,2,973])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6118,183,2,973])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",6118,183,2,973]),types.vector(["bootstrap2012/function-teachpack",6125,183,9,5]),types.vector(["bootstrap2012/function-teachpack",6195,184,9,4]),types.vector(["bootstrap2012/function-teachpack",6222,185,9,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("loop"),"locs":[types.vector(["bootstrap2012/function-teachpack",6260,187,16,4])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6317,189,25,3]),types.vector(["bootstrap2012/function-teachpack",6321,189,29,14]),types.vector(["bootstrap2012/function-teachpack",6316,189,24,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6316,189,24,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6317,189,25,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6322,189,30,6]),types.vector(["bootstrap2012/function-teachpack",6329,189,37,5]),types.vector(["bootstrap2012/function-teachpack",6321,189,29,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6321,189,29,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6322,189,30,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6357,190,20,701]),types.vector(["bootstrap2012/function-teachpack",6367,190,30,11]),types.vector(["bootstrap2012/function-teachpack",6357,190,20,701])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6357,190,20,701])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",6357,190,20,701]),types.vector(["bootstrap2012/function-teachpack",6364,190,27,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8,9,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6435,192,25,4]),types.vector(["bootstrap2012/function-teachpack",6440,192,30,5]),types.vector(["bootstrap2012/function-teachpack",6446,192,36,11]),types.vector(["bootstrap2012/function-teachpack",6434,192,24,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6434,192,24,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6435,192,25,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6447,192,37,3]),types.vector(["bootstrap2012/function-teachpack",6451,192,41,5]),types.vector(["bootstrap2012/function-teachpack",6446,192,36,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6446,192,36,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6447,192,37,3])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6490,193,31,3]),types.vector(["bootstrap2012/function-teachpack",6494,193,35,21]),types.vector(["bootstrap2012/function-teachpack",6489,193,30,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6489,193,30,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6490,193,31,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6495,193,36,8]),types.vector(["bootstrap2012/function-teachpack",6504,193,45,4]),types.vector(["bootstrap2012/function-teachpack",6509,193,50,2]),types.vector(["bootstrap2012/function-teachpack",6512,193,53,2]),types.vector(["bootstrap2012/function-teachpack",6494,193,35,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6494,193,35,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6495,193,36,8])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6579,195,29,9]),types.vector(["bootstrap2012/function-teachpack",6589,195,39,4]),types.vector(["bootstrap2012/function-teachpack",6594,195,44,2]),types.vector(["bootstrap2012/function-teachpack",6597,195,47,2]),types.vector(["bootstrap2012/function-teachpack",6578,195,28,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6578,195,28,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6579,195,29,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":true}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6630,196,29,4]),types.vector(["bootstrap2012/function-teachpack",6635,196,34,4]),types.vector(["bootstrap2012/function-teachpack",6640,196,39,14]),types.vector(["bootstrap2012/function-teachpack",6629,196,28,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6629,196,28,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6630,196,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6641,196,40,4]),types.vector(["bootstrap2012/function-teachpack",6646,196,45,2]),types.vector(["bootstrap2012/function-teachpack",6649,196,48,4]),types.vector(["bootstrap2012/function-teachpack",6640,196,39,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6640,196,39,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6641,196,40,4])},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6685,197,29,4]),types.vector(["bootstrap2012/function-teachpack",6690,197,34,5]),types.vector(["bootstrap2012/function-teachpack",6731,198,34,291]),types.vector(["bootstrap2012/function-teachpack",6684,197,28,339])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6684,197,28,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6685,197,29,4])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6732,198,35,6]),types.vector(["bootstrap2012/function-teachpack",6739,198,42,5]),types.vector(["bootstrap2012/function-teachpack",6787,199,42,234]),types.vector(["bootstrap2012/function-teachpack",6731,198,34,291])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6731,198,34,291])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6732,198,35,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6788,199,43,6]),types.vector(["bootstrap2012/function-teachpack",6795,199,50,127]),types.vector(["bootstrap2012/function-teachpack",6973,201,50,47]),types.vector(["bootstrap2012/function-teachpack",6787,199,42,234])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6787,199,42,234])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6788,199,43,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",6796,199,51,6]),types.vector(["bootstrap2012/function-teachpack",6804,199,59,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6,8,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6863,200,53,11]),types.vector(["bootstrap2012/function-teachpack",6875,200,65,23]),types.vector(["bootstrap2012/function-teachpack",6899,200,89,11]),types.vector(["bootstrap2012/function-teachpack",6911,200,101,9]),types.vector(["bootstrap2012/function-teachpack",6862,200,52,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6862,200,52,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6863,200,53,11])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6876,200,66,10]),types.vector(["bootstrap2012/function-teachpack",6887,200,77,6]),types.vector(["bootstrap2012/function-teachpack",6894,200,84,3]),types.vector(["bootstrap2012/function-teachpack",6875,200,65,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6875,200,65,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6876,200,66,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6974,201,51,22]),types.vector(["bootstrap2012/function-teachpack",6997,201,74,6]),types.vector(["bootstrap2012/function-teachpack",7004,201,81,2]),types.vector(["bootstrap2012/function-teachpack",7007,201,84,5]),types.vector(["bootstrap2012/function-teachpack",7013,201,90,6]),types.vector(["bootstrap2012/function-teachpack",6973,201,50,47])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6973,201,50,47])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6974,201,51,22])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":20,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}]}}}]}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6483,193,24,542]),types.vector(["bootstrap2012/function-teachpack",6483,193,24,542])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6483,193,24,542])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6483,193,24,542])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7051,202,25,4]),types.vector(["bootstrap2012/function-teachpack",7050,202,24,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7050,202,24,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6368,190,31,3]),types.vector(["bootstrap2012/function-teachpack",6372,190,35,5]),types.vector(["bootstrap2012/function-teachpack",6367,190,30,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6367,190,30,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6368,190,31,3])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6310,189,18,749]),types.vector(["bootstrap2012/function-teachpack",6310,189,18,749])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6310,189,18,749])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6310,189,18,749])},"rands":[]}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7072,203,9,4]),types.vector(["bootstrap2012/function-teachpack",7071,203,8,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7071,203,8,6])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6132,183,16,4]),types.vector(["bootstrap2012/function-teachpack",6137,183,21,46]),types.vector(["bootstrap2012/function-teachpack",6131,183,15,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6131,183,15,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6132,183,16,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6138,183,22,15]),types.vector(["bootstrap2012/function-teachpack",6154,183,38,7]),types.vector(["bootstrap2012/function-teachpack",6162,183,46,7]),types.vector(["bootstrap2012/function-teachpack",6170,183,54,5]),types.vector(["bootstrap2012/function-teachpack",6176,183,60,6]),types.vector(["bootstrap2012/function-teachpack",6137,183,21,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6137,183,21,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6138,183,22,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",6201,184,15,9]),types.vector(["bootstrap2012/function-teachpack",6200,184,14,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",6200,184,14,11])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",6201,184,15,9])},"rands":[]}}},{"$":"constant","value":types.EMPTY}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7103,206,9,16])}],"body":{"$":"lam","name":types.symbol("fill-from-point!"),"locs":[types.vector(["bootstrap2012/function-teachpack",7103,206,9,16]),types.vector(["bootstrap2012/function-teachpack",7120,206,26,3]),types.vector(["bootstrap2012/function-teachpack",7124,206,30,7]),types.vector(["bootstrap2012/function-teachpack",7132,206,38,7]),types.vector(["bootstrap2012/function-teachpack",7140,206,46,12]),types.vector(["bootstrap2012/function-teachpack",7153,206,59,17]),types.vector(["bootstrap2012/function-teachpack",7171,206,77,9]),types.vector(["bootstrap2012/function-teachpack",7181,206,87,9])],"flags":[],"num-params":7,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7201,207,9,42]),types.vector(["bootstrap2012/function-teachpack",7204,207,12,38]),types.vector(["bootstrap2012/function-teachpack",7201,207,9,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7201,207,9,42])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7201,207,9,42]),types.vector(["bootstrap2012/function-teachpack",7202,207,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7253,208,9,25]),types.vector(["bootstrap2012/function-teachpack",7260,208,16,17]),types.vector(["bootstrap2012/function-teachpack",7253,208,9,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7253,208,9,25])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7253,208,9,25]),types.vector(["bootstrap2012/function-teachpack",7254,208,10,5])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,4,5,6,7,8],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7288,209,9,27]),types.vector(["bootstrap2012/function-teachpack",7296,209,17,18]),types.vector(["bootstrap2012/function-teachpack",7288,209,9,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7288,209,9,27])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7288,209,9,27]),types.vector(["bootstrap2012/function-teachpack",7289,209,10,6])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,3,4,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7325,210,9,142]),types.vector(["bootstrap2012/function-teachpack",7328,210,12,138]),types.vector(["bootstrap2012/function-teachpack",7325,210,9,142])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7325,210,9,142])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7325,210,9,142]),types.vector(["bootstrap2012/function-teachpack",7326,210,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7477,213,9,34]),types.vector(["bootstrap2012/function-teachpack",7480,213,12,30]),types.vector(["bootstrap2012/function-teachpack",7477,213,9,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7477,213,9,34])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7477,213,9,34]),types.vector(["bootstrap2012/function-teachpack",7478,213,10,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3,5,6,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7537,215,13,3]),types.vector(["bootstrap2012/function-teachpack",7541,215,17,13]),types.vector(["bootstrap2012/function-teachpack",7536,215,12,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7536,215,12,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7537,215,13,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7542,215,18,7]),types.vector(["bootstrap2012/function-teachpack",7550,215,26,1]),types.vector(["bootstrap2012/function-teachpack",7552,215,28,1]),types.vector(["bootstrap2012/function-teachpack",7541,215,17,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7541,215,17,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7542,215,18,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7565,216,9,8]),types.vector(["bootstrap2012/function-teachpack",7574,216,18,36]),types.vector(["bootstrap2012/function-teachpack",7629,217,18,67]),types.vector(["bootstrap2012/function-teachpack",7564,216,8,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7564,216,8,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7565,216,9,8])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7575,216,19,6]),types.vector(["bootstrap2012/function-teachpack",7583,216,27,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,6,10],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7589,216,33,11]),types.vector(["bootstrap2012/function-teachpack",7601,216,45,1]),types.vector(["bootstrap2012/function-teachpack",7603,216,47,3]),types.vector(["bootstrap2012/function-teachpack",7607,216,51,1]),types.vector(["bootstrap2012/function-teachpack",7588,216,32,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7588,216,32,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7589,216,33,11])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7630,217,19,22]),types.vector(["bootstrap2012/function-teachpack",7653,217,42,1]),types.vector(["bootstrap2012/function-teachpack",7655,217,44,5]),types.vector(["bootstrap2012/function-teachpack",7661,217,50,6]),types.vector(["bootstrap2012/function-teachpack",7668,217,57,7]),types.vector(["bootstrap2012/function-teachpack",7676,217,65,7]),types.vector(["bootstrap2012/function-teachpack",7684,217,73,1]),types.vector(["bootstrap2012/function-teachpack",7686,217,75,9]),types.vector(["bootstrap2012/function-teachpack",7629,217,18,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7629,217,18,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7630,217,19,22])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7530,215,6,168]),types.vector(["bootstrap2012/function-teachpack",7530,215,6,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7530,215,6,168])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7530,215,6,168])},"rands":[]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7706,218,7,18]),types.vector(["bootstrap2012/function-teachpack",7725,218,26,16]),types.vector(["bootstrap2012/function-teachpack",7742,218,43,5]),types.vector(["bootstrap2012/function-teachpack",7748,218,49,6]),types.vector(["bootstrap2012/function-teachpack",7705,218,6,50])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7705,218,6,50])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7706,218,7,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7726,218,27,12]),types.vector(["bootstrap2012/function-teachpack",7739,218,40,1]),types.vector(["bootstrap2012/function-teachpack",7725,218,26,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7725,218,26,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7726,218,27,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7481,213,13,10]),types.vector(["bootstrap2012/function-teachpack",7492,213,24,17]),types.vector(["bootstrap2012/function-teachpack",7480,213,12,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7480,213,12,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7481,213,13,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12]),types.vector(["bootstrap2012/function-teachpack",7332,210,16,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7332,210,16,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7332,210,16,12])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7329,210,13,2])},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7332,210,16,12])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7363,211,17,10]),types.vector(["bootstrap2012/function-teachpack",7374,211,28,12]),types.vector(["bootstrap2012/function-teachpack",7362,211,16,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7362,211,16,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7363,211,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7405,212,17,10]),types.vector(["bootstrap2012/function-teachpack",7416,212,28,1]),types.vector(["bootstrap2012/function-teachpack",7418,212,30,46]),types.vector(["bootstrap2012/function-teachpack",7404,212,16,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7404,212,16,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7405,212,17,10])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7419,212,31,15]),types.vector(["bootstrap2012/function-teachpack",7435,212,47,7]),types.vector(["bootstrap2012/function-teachpack",7443,212,55,7]),types.vector(["bootstrap2012/function-teachpack",7451,212,63,5]),types.vector(["bootstrap2012/function-teachpack",7457,212,69,6]),types.vector(["bootstrap2012/function-teachpack",7418,212,30,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7418,212,30,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7419,212,31,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":15,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7297,209,18,12]),types.vector(["bootstrap2012/function-teachpack",7310,209,31,3]),types.vector(["bootstrap2012/function-teachpack",7296,209,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7296,209,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7297,209,18,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7261,208,17,11]),types.vector(["bootstrap2012/function-teachpack",7273,208,29,3]),types.vector(["bootstrap2012/function-teachpack",7260,208,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7260,208,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7261,208,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7205,207,13,12]),types.vector(["bootstrap2012/function-teachpack",7218,207,26,23]),types.vector(["bootstrap2012/function-teachpack",7204,207,12,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7204,207,12,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7205,207,13,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7219,207,27,17]),types.vector(["bootstrap2012/function-teachpack",7237,207,45,3]),types.vector(["bootstrap2012/function-teachpack",7218,207,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7218,207,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7219,207,27,17])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":26,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7769,220,9,23])}],"body":{"$":"lam","name":types.symbol("transparent-from-corner"),"locs":[types.vector(["bootstrap2012/function-teachpack",7769,220,9,23]),types.vector(["bootstrap2012/function-teachpack",7793,220,33,3]),types.vector(["bootstrap2012/function-teachpack",7797,220,37,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7811,221,3,16]),types.vector(["bootstrap2012/function-teachpack",7828,221,20,3]),types.vector(["bootstrap2012/function-teachpack",7832,221,24,1]),types.vector(["bootstrap2012/function-teachpack",7834,221,26,1]),types.vector(["bootstrap2012/function-teachpack",7836,221,28,2]),types.vector(["bootstrap2012/function-teachpack",7839,221,31,20]),types.vector(["bootstrap2012/function-teachpack",7860,221,52,9]),types.vector(["bootstrap2012/function-teachpack",7870,221,62,1]),types.vector(["bootstrap2012/function-teachpack",7810,221,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7810,221,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7811,221,3,16])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7840,221,32,10]),types.vector(["bootstrap2012/function-teachpack",7851,221,43,1]),types.vector(["bootstrap2012/function-teachpack",7853,221,45,1]),types.vector(["bootstrap2012/function-teachpack",7855,221,47,1]),types.vector(["bootstrap2012/function-teachpack",7857,221,49,1]),types.vector(["bootstrap2012/function-teachpack",7839,221,31,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7839,221,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7840,221,32,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7883,222,9,24])}],"body":{"$":"lam","name":types.symbol("transparent-from-corners"),"locs":[types.vector(["bootstrap2012/function-teachpack",7883,222,9,24]),types.vector(["bootstrap2012/function-teachpack",7908,222,34,3]),types.vector(["bootstrap2012/function-teachpack",7912,222,38,9])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7925,223,2,442]),types.vector(["bootstrap2012/function-teachpack",7937,223,14,20]),types.vector(["bootstrap2012/function-teachpack",7980,224,21,2]),types.vector(["bootstrap2012/function-teachpack",8001,225,17,1]),types.vector(["bootstrap2012/function-teachpack",8017,226,13,23]),types.vector(["bootstrap2012/function-teachpack",8055,227,13,24]),types.vector(["bootstrap2012/function-teachpack",7925,223,2,442])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7925,223,2,442])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",7925,223,2,442]),types.vector(["bootstrap2012/function-teachpack",7932,223,9,4]),types.vector(["bootstrap2012/function-teachpack",7968,224,9,11]),types.vector(["bootstrap2012/function-teachpack",7993,225,9,7]),types.vector(["bootstrap2012/function-teachpack",8013,226,9,3]),types.vector(["bootstrap2012/function-teachpack",8051,227,9,3])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8087,228,5,16]),types.vector(["bootstrap2012/function-teachpack",8110,229,5,207]),types.vector(["bootstrap2012/function-teachpack",8323,234,5,3]),types.vector(["bootstrap2012/function-teachpack",8327,234,9,3]),types.vector(["bootstrap2012/function-teachpack",8331,234,13,11]),types.vector(["bootstrap2012/function-teachpack",8343,234,25,4]),types.vector(["bootstrap2012/function-teachpack",8348,234,30,9]),types.vector(["bootstrap2012/function-teachpack",8358,234,40,7]),types.vector(["bootstrap2012/function-teachpack",8086,228,4,280])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8086,228,4,280])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8087,228,5,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8111,229,6,16]),types.vector(["bootstrap2012/function-teachpack",8134,230,6,135]),types.vector(["bootstrap2012/function-teachpack",8276,233,6,1]),types.vector(["bootstrap2012/function-teachpack",8278,233,8,3]),types.vector(["bootstrap2012/function-teachpack",8282,233,12,11]),types.vector(["bootstrap2012/function-teachpack",8294,233,24,4]),types.vector(["bootstrap2012/function-teachpack",8299,233,29,9]),types.vector(["bootstrap2012/function-teachpack",8309,233,39,7]),types.vector(["bootstrap2012/function-teachpack",8110,229,5,207])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8110,229,5,207])},"body":{"$":"application","rator":{"$":"toplevel","depth":14,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8111,229,6,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8135,230,7,16]),types.vector(["bootstrap2012/function-teachpack",8159,231,7,61]),types.vector(["bootstrap2012/function-teachpack",8228,232,7,3]),types.vector(["bootstrap2012/function-teachpack",8232,232,11,1]),types.vector(["bootstrap2012/function-teachpack",8234,232,13,11]),types.vector(["bootstrap2012/function-teachpack",8246,232,25,4]),types.vector(["bootstrap2012/function-teachpack",8251,232,30,9]),types.vector(["bootstrap2012/function-teachpack",8261,232,40,7]),types.vector(["bootstrap2012/function-teachpack",8134,230,6,135])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8134,230,6,135])},"body":{"$":"application","rator":{"$":"toplevel","depth":21,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8135,230,7,16])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8160,231,8,16]),types.vector(["bootstrap2012/function-teachpack",8177,231,25,3]),types.vector(["bootstrap2012/function-teachpack",8181,231,29,1]),types.vector(["bootstrap2012/function-teachpack",8183,231,31,1]),types.vector(["bootstrap2012/function-teachpack",8185,231,33,11]),types.vector(["bootstrap2012/function-teachpack",8197,231,45,4]),types.vector(["bootstrap2012/function-teachpack",8202,231,50,9]),types.vector(["bootstrap2012/function-teachpack",8212,231,60,7]),types.vector(["bootstrap2012/function-teachpack",8159,231,7,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8159,231,7,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":28,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8160,231,8,16])},"rands":[{"$":"localref","unbox?":false,"pos":29,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":32,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":31,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":30,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":33,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":27,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":25,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":24,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":23,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":26,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":21,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":18,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":17,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":16,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":19,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",7938,223,15,10]),types.vector(["bootstrap2012/function-teachpack",7949,223,26,1]),types.vector(["bootstrap2012/function-teachpack",7951,223,28,1]),types.vector(["bootstrap2012/function-teachpack",7953,223,30,1]),types.vector(["bootstrap2012/function-teachpack",7955,223,32,1]),types.vector(["bootstrap2012/function-teachpack",7937,223,14,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",7937,223,14,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",7938,223,15,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"constant","value":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8018,226,14,1]),types.vector(["bootstrap2012/function-teachpack",8020,226,16,17]),types.vector(["bootstrap2012/function-teachpack",8038,226,34,1]),types.vector(["bootstrap2012/function-teachpack",8017,226,13,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8017,226,13,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8018,226,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8021,226,17,11]),types.vector(["bootstrap2012/function-teachpack",8033,226,29,3]),types.vector(["bootstrap2012/function-teachpack",8020,226,16,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8020,226,16,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8021,226,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8056,227,14,1]),types.vector(["bootstrap2012/function-teachpack",8058,227,16,18]),types.vector(["bootstrap2012/function-teachpack",8077,227,35,1]),types.vector(["bootstrap2012/function-teachpack",8055,227,13,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8055,227,13,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8056,227,14,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8059,227,17,12]),types.vector(["bootstrap2012/function-teachpack",8072,227,30,3]),types.vector(["bootstrap2012/function-teachpack",8058,227,16,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8058,227,16,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8059,227,17,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":1}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8536,239,9,13])}],"body":{"$":"lam","name":types.symbol("replace-color"),"locs":[types.vector(["bootstrap2012/function-teachpack",8536,239,9,13]),types.vector(["bootstrap2012/function-teachpack",8550,239,23,3]),types.vector(["bootstrap2012/function-teachpack",8554,239,27,12]),types.vector(["bootstrap2012/function-teachpack",8567,239,40,17]),types.vector(["bootstrap2012/function-teachpack",8585,239,58,9])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8598,240,2,299]),types.vector(["bootstrap2012/function-teachpack",8609,240,13,25]),types.vector(["bootstrap2012/function-teachpack",8649,241,13,30]),types.vector(["bootstrap2012/function-teachpack",8598,240,2,299])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8598,240,2,299])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",8598,240,2,299]),types.vector(["bootstrap2012/function-teachpack",8605,240,9,3]),types.vector(["bootstrap2012/function-teachpack",8645,241,9,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8687,242,5,18]),types.vector(["bootstrap2012/function-teachpack",8711,243,5,137]),types.vector(["bootstrap2012/function-teachpack",8854,248,5,17]),types.vector(["bootstrap2012/function-teachpack",8877,249,5,18]),types.vector(["bootstrap2012/function-teachpack",8686,242,4,210])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8686,242,4,210])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8687,242,5,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8712,243,6,3]),types.vector(["bootstrap2012/function-teachpack",8716,243,10,97]),types.vector(["bootstrap2012/function-teachpack",8824,247,10,23]),types.vector(["bootstrap2012/function-teachpack",8711,243,5,137])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8711,243,5,137])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8712,243,6,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",8717,243,11,6]),types.vector(["bootstrap2012/function-teachpack",8725,243,19,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5,7,8,9],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8741,244,13,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8745,244,17,11]),types.vector(["bootstrap2012/function-teachpack",8757,244,29,1]),types.vector(["bootstrap2012/function-teachpack",8759,244,31,3]),types.vector(["bootstrap2012/function-teachpack",8763,244,35,9]),types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8745,244,17,11])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8744,244,16,29])}]}}},"then":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8825,247,11,17]),types.vector(["bootstrap2012/function-teachpack",8843,247,29,3]),types.vector(["bootstrap2012/function-teachpack",8824,247,10,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8824,247,10,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8825,247,11,17])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8855,248,6,11]),types.vector(["bootstrap2012/function-teachpack",8867,248,18,3]),types.vector(["bootstrap2012/function-teachpack",8854,248,5,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8854,248,5,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8855,248,6,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8878,249,6,12]),types.vector(["bootstrap2012/function-teachpack",8891,249,19,3]),types.vector(["bootstrap2012/function-teachpack",8877,249,5,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8877,249,5,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8878,249,6,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8610,240,14,10]),types.vector(["bootstrap2012/function-teachpack",8621,240,25,12]),types.vector(["bootstrap2012/function-teachpack",8609,240,13,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8609,240,13,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8610,240,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",8650,241,14,10]),types.vector(["bootstrap2012/function-teachpack",8661,241,25,17]),types.vector(["bootstrap2012/function-teachpack",8649,241,13,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",8649,241,13,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",8650,241,14,10])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9020,252,9,12])}],"body":{"$":"lam","name":types.symbol("color->alpha"),"locs":[types.vector(["bootstrap2012/function-teachpack",9020,252,9,12]),types.vector(["bootstrap2012/function-teachpack",9033,252,22,3]),types.vector(["bootstrap2012/function-teachpack",9037,252,26,12]),types.vector(["bootstrap2012/function-teachpack",9050,252,39,9])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9064,253,3,13]),types.vector(["bootstrap2012/function-teachpack",9078,253,17,3]),types.vector(["bootstrap2012/function-teachpack",9082,253,21,12]),types.vector(["bootstrap2012/function-teachpack",9095,253,34,20]),types.vector(["bootstrap2012/function-teachpack",9116,253,55,9]),types.vector(["bootstrap2012/function-teachpack",9063,253,2,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9063,253,2,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9064,253,3,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9096,253,35,10]),types.vector(["bootstrap2012/function-teachpack",9107,253,46,1]),types.vector(["bootstrap2012/function-teachpack",9109,253,48,1]),types.vector(["bootstrap2012/function-teachpack",9111,253,50,1]),types.vector(["bootstrap2012/function-teachpack",9113,253,52,1]),types.vector(["bootstrap2012/function-teachpack",9095,253,34,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9095,253,34,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9096,253,35,10])},"rands":[{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0},{"$":"constant","value":0}]}}},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9263,257,9,11])}],"body":{"$":"lam","name":types.symbol("clipart/url"),"locs":[types.vector(["bootstrap2012/function-teachpack",9263,257,9,11]),types.vector(["bootstrap2012/function-teachpack",9275,257,21,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9283,258,3,24]),types.vector(["bootstrap2012/function-teachpack",9308,258,28,16]),types.vector(["bootstrap2012/function-teachpack",9325,258,45,2]),types.vector(["bootstrap2012/function-teachpack",9282,258,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9282,258,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":28,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9283,258,3,24])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9309,258,29,10]),types.vector(["bootstrap2012/function-teachpack",9320,258,40,3]),types.vector(["bootstrap2012/function-teachpack",9308,258,28,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9308,258,28,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9309,258,29,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":30}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9382,261,9,12])}],"body":{"$":"lam","name":types.symbol("save-clipart"),"locs":[types.vector(["bootstrap2012/function-teachpack",9382,261,9,12]),types.vector(["bootstrap2012/function-teachpack",9395,261,22,3]),types.vector(["bootstrap2012/function-teachpack",9399,261,26,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9408,262,3,10]),types.vector(["bootstrap2012/function-teachpack",9419,262,14,3]),types.vector(["bootstrap2012/function-teachpack",9423,262,18,27]),types.vector(["bootstrap2012/function-teachpack",9451,262,46,17]),types.vector(["bootstrap2012/function-teachpack",9407,262,2,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9407,262,2,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":2,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9408,262,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9424,262,19,13]),types.vector(["bootstrap2012/function-teachpack",9438,262,33,4]),types.vector(["bootstrap2012/function-teachpack",9443,262,38,6]),types.vector(["bootstrap2012/function-teachpack",9423,262,18,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9423,262,18,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9424,262,19,13])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":".png"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9452,262,47,11]),types.vector(["bootstrap2012/function-teachpack",9464,262,59,3]),types.vector(["bootstrap2012/function-teachpack",9451,262,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9451,262,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9452,262,47,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9565,269,9,15])}],"body":{"$":"lam","name":types.symbol("boolean->string"),"locs":[types.vector(["bootstrap2012/function-teachpack",9565,269,9,15]),types.vector(["bootstrap2012/function-teachpack",9581,269,25,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1]),types.vector(["bootstrap2012/function-teachpack",9590,270,6,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9590,270,6,1])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9590,270,6,1])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9587,270,3,2])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9590,270,6,1])}]}}},"then":{"$":"constant","value":"true"},"else":{"$":"constant","value":"false"}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9721,274,9,14])}],"body":{"$":"lam","name":types.symbol("boolean->image"),"locs":[types.vector(["bootstrap2012/function-teachpack",9721,274,9,14]),types.vector(["bootstrap2012/function-teachpack",9736,274,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9742,275,3,13]),types.vector(["bootstrap2012/function-teachpack",9756,275,17,19]),types.vector(["bootstrap2012/function-teachpack",9741,275,2,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9741,275,2,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9742,275,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9757,275,18,15]),types.vector(["bootstrap2012/function-teachpack",9773,275,34,1]),types.vector(["bootstrap2012/function-teachpack",9756,275,17,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9756,275,17,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9757,275,18,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9866,281,9,13])}],"body":{"$":"lam","name":types.symbol("string->image"),"locs":[types.vector(["bootstrap2012/function-teachpack",9866,281,9,13]),types.vector(["bootstrap2012/function-teachpack",9880,281,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",9886,282,3,4]),types.vector(["bootstrap2012/function-teachpack",9891,282,8,1]),types.vector(["bootstrap2012/function-teachpack",9893,282,10,2]),types.vector(["bootstrap2012/function-teachpack",9896,282,13,6]),types.vector(["bootstrap2012/function-teachpack",9885,282,2,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",9885,282,2,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9886,282,3,4])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":14},{"$":"constant","value":types.symbol("black")}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",9991,286,9,13])}],"body":{"$":"lam","name":types.symbol("number->image"),"locs":[types.vector(["bootstrap2012/function-teachpack",9991,286,9,13]),types.vector(["bootstrap2012/function-teachpack",10005,286,23,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10011,287,3,13]),types.vector(["bootstrap2012/function-teachpack",10025,287,17,18]),types.vector(["bootstrap2012/function-teachpack",10010,287,2,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10010,287,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":32,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10011,287,3,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10026,287,18,14]),types.vector(["bootstrap2012/function-teachpack",10041,287,33,1]),types.vector(["bootstrap2012/function-teachpack",10025,287,17,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10025,287,17,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10026,287,18,14])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10212,293,9,10])}],"body":{"$":"lam","name":types.symbol("overlay-at"),"locs":[types.vector(["bootstrap2012/function-teachpack",10212,293,9,10]),types.vector(["bootstrap2012/function-teachpack",10223,293,20,10]),types.vector(["bootstrap2012/function-teachpack",10234,293,31,1]),types.vector(["bootstrap2012/function-teachpack",10236,293,33,1]),types.vector(["bootstrap2012/function-teachpack",10238,293,35,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10253,294,3,10]),types.vector(["bootstrap2012/function-teachpack",10264,294,14,10]),types.vector(["bootstrap2012/function-teachpack",10275,294,25,1]),types.vector(["bootstrap2012/function-teachpack",10277,294,27,7]),types.vector(["bootstrap2012/function-teachpack",10285,294,35,10]),types.vector(["bootstrap2012/function-teachpack",10252,294,2,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10252,294,2,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10253,294,3,10])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10278,294,28,1]),types.vector(["bootstrap2012/function-teachpack",10280,294,30,1]),types.vector(["bootstrap2012/function-teachpack",10282,294,32,1]),types.vector(["bootstrap2012/function-teachpack",10277,294,27,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10277,294,27,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10278,294,28,1])},"rands":[{"$":"constant","value":0},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10465,299,9,9])}],"body":{"$":"lam","name":types.symbol("put-image"),"locs":[types.vector(["bootstrap2012/function-teachpack",10465,299,9,9]),types.vector(["bootstrap2012/function-teachpack",10475,299,19,10]),types.vector(["bootstrap2012/function-teachpack",10486,299,30,1]),types.vector(["bootstrap2012/function-teachpack",10488,299,32,1]),types.vector(["bootstrap2012/function-teachpack",10490,299,34,10])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10505,300,3,11]),types.vector(["bootstrap2012/function-teachpack",10517,300,15,10]),types.vector(["bootstrap2012/function-teachpack",10528,300,26,1]),types.vector(["bootstrap2012/function-teachpack",10530,300,28,31]),types.vector(["bootstrap2012/function-teachpack",10562,300,60,10]),types.vector(["bootstrap2012/function-teachpack",10504,300,2,69])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10504,300,2,69])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10505,300,3,11])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10531,300,29,1]),types.vector(["bootstrap2012/function-teachpack",10533,300,31,25]),types.vector(["bootstrap2012/function-teachpack",10559,300,57,1]),types.vector(["bootstrap2012/function-teachpack",10530,300,28,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10530,300,28,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10531,300,29,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10534,300,32,12]),types.vector(["bootstrap2012/function-teachpack",10547,300,45,10]),types.vector(["bootstrap2012/function-teachpack",10533,300,31,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10533,300,31,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10534,300,32,12])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10649,303,9,2])}],"body":{"$":"lam","name":types.symbol("sq"),"locs":[types.vector(["bootstrap2012/function-teachpack",10649,303,9,2]),types.vector(["bootstrap2012/function-teachpack",10652,303,12,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10656,303,16,1]),types.vector(["bootstrap2012/function-teachpack",10658,303,18,1]),types.vector(["bootstrap2012/function-teachpack",10660,303,20,1]),types.vector(["bootstrap2012/function-teachpack",10655,303,15,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10655,303,15,7])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10656,303,16,1])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":33,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10882,308,9,4])}],"body":{"$":"lam","name":types.symbol("sine"),"locs":[types.vector(["bootstrap2012/function-teachpack",10882,308,9,4]),types.vector(["bootstrap2012/function-teachpack",10887,308,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10891,308,18,3]),types.vector(["bootstrap2012/function-teachpack",10895,308,22,16]),types.vector(["bootstrap2012/function-teachpack",10890,308,17,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10890,308,17,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10891,308,18,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10896,308,23,1]),types.vector(["bootstrap2012/function-teachpack",10898,308,25,1]),types.vector(["bootstrap2012/function-teachpack",10900,308,27,10]),types.vector(["bootstrap2012/function-teachpack",10895,308,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10895,308,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10896,308,23,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",10901,308,28,1]),types.vector(["bootstrap2012/function-teachpack",10903,308,30,2]),types.vector(["bootstrap2012/function-teachpack",10906,308,33,3]),types.vector(["bootstrap2012/function-teachpack",10900,308,27,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",10900,308,27,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10901,308,28,1])},"rands":[{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",10903,308,30,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11134,313,9,6])}],"body":{"$":"lam","name":types.symbol("cosine"),"locs":[types.vector(["bootstrap2012/function-teachpack",11134,313,9,6]),types.vector(["bootstrap2012/function-teachpack",11141,313,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11145,313,20,3]),types.vector(["bootstrap2012/function-teachpack",11149,313,24,16]),types.vector(["bootstrap2012/function-teachpack",11144,313,19,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11144,313,19,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11145,313,20,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11150,313,25,1]),types.vector(["bootstrap2012/function-teachpack",11152,313,27,1]),types.vector(["bootstrap2012/function-teachpack",11154,313,29,10]),types.vector(["bootstrap2012/function-teachpack",11149,313,24,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11149,313,24,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11150,313,25,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11155,313,30,1]),types.vector(["bootstrap2012/function-teachpack",11157,313,32,2]),types.vector(["bootstrap2012/function-teachpack",11160,313,35,3]),types.vector(["bootstrap2012/function-teachpack",11154,313,29,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11154,313,29,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11155,313,30,1])},"rands":[{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11157,313,32,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":31,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11386,318,9,7])}],"body":{"$":"lam","name":types.symbol("tangent"),"locs":[types.vector(["bootstrap2012/function-teachpack",11386,318,9,7]),types.vector(["bootstrap2012/function-teachpack",11394,318,17,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11398,318,21,3]),types.vector(["bootstrap2012/function-teachpack",11402,318,25,16]),types.vector(["bootstrap2012/function-teachpack",11397,318,20,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11397,318,20,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11398,318,21,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11403,318,26,1]),types.vector(["bootstrap2012/function-teachpack",11405,318,28,1]),types.vector(["bootstrap2012/function-teachpack",11407,318,30,10]),types.vector(["bootstrap2012/function-teachpack",11402,318,25,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11402,318,25,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11403,318,26,1])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11408,318,31,1]),types.vector(["bootstrap2012/function-teachpack",11410,318,33,2]),types.vector(["bootstrap2012/function-teachpack",11413,318,36,3]),types.vector(["bootstrap2012/function-teachpack",11407,318,30,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11407,318,30,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11408,318,31,1])},"rands":[{"$":"toplevel","depth":5,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11410,318,33,2])},{"$":"constant","value":180}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11496,322,9,4])}],"body":{"$":"lam","name":types.symbol("pick"),"locs":[types.vector(["bootstrap2012/function-teachpack",11496,322,9,4]),types.vector(["bootstrap2012/function-teachpack",11501,322,14,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11509,323,3,8]),types.vector(["bootstrap2012/function-teachpack",11518,323,12,3]),types.vector(["bootstrap2012/function-teachpack",11522,323,16,21]),types.vector(["bootstrap2012/function-teachpack",11508,323,2,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11508,323,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11509,323,3,8])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11523,323,17,6]),types.vector(["bootstrap2012/function-teachpack",11530,323,24,12]),types.vector(["bootstrap2012/function-teachpack",11522,323,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11522,323,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11523,323,17,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11531,323,25,6]),types.vector(["bootstrap2012/function-teachpack",11538,323,32,3]),types.vector(["bootstrap2012/function-teachpack",11530,323,24,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11530,323,24,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11531,323,25,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11653,327,9,7])}],"body":{"$":"lam","name":types.symbol("subset?"),"locs":[types.vector(["bootstrap2012/function-teachpack",11653,327,9,7]),types.vector(["bootstrap2012/function-teachpack",11661,327,17,1]),types.vector(["bootstrap2012/function-teachpack",11663,327,19,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11670,328,3,6]),types.vector(["bootstrap2012/function-teachpack",11680,329,3,29]),types.vector(["bootstrap2012/function-teachpack",11713,330,3,1]),types.vector(["bootstrap2012/function-teachpack",11669,328,2,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11669,328,2,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11670,328,3,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["bootstrap2012/function-teachpack",11681,329,4,6]),types.vector(["bootstrap2012/function-teachpack",11689,329,12,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[2,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11695,329,18,6]),types.vector(["bootstrap2012/function-teachpack",11702,329,25,3]),types.vector(["bootstrap2012/function-teachpack",11706,329,29,1]),types.vector(["bootstrap2012/function-teachpack",11694,329,17,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11694,329,17,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11695,329,18,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11727,332,9,3])}],"body":{"$":"lam","name":types.symbol("in?"),"locs":[types.vector(["bootstrap2012/function-teachpack",11727,332,9,3]),types.vector(["bootstrap2012/function-teachpack",11731,332,13,1]),types.vector(["bootstrap2012/function-teachpack",11733,332,15,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11739,333,3,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11743,333,7,5]),types.vector(["bootstrap2012/function-teachpack",11749,333,13,1]),types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11743,333,7,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11742,333,6,9])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11753,333,17,7]),types.vector(["bootstrap2012/function-teachpack",11761,333,25,1]),types.vector(["bootstrap2012/function-teachpack",11763,333,27,1]),types.vector(["bootstrap2012/function-teachpack",11752,333,16,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11752,333,16,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":30,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11753,333,17,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11767,333,31,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11771,333,35,3]),types.vector(["bootstrap2012/function-teachpack",11775,333,39,12]),types.vector(["bootstrap2012/function-teachpack",11788,333,52,2]),types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11771,333,35,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11776,333,40,6]),types.vector(["bootstrap2012/function-teachpack",11783,333,47,1]),types.vector(["bootstrap2012/function-teachpack",11785,333,49,1]),types.vector(["bootstrap2012/function-teachpack",11775,333,39,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11775,333,39,12])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11776,333,40,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":false}]}}},{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11770,333,34,21])}]}}},"then":{"$":"constant","value":false},"else":{"$":"constant","value":true}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11812,336,9,7])}],"body":{"$":"lam","name":types.symbol("on-blue"),"locs":[types.vector(["bootstrap2012/function-teachpack",11812,336,9,7]),types.vector(["bootstrap2012/function-teachpack",11820,336,17,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11828,337,3,7]),types.vector(["bootstrap2012/function-teachpack",11836,337,11,3]),types.vector(["bootstrap2012/function-teachpack",11840,337,15,63]),types.vector(["bootstrap2012/function-teachpack",11827,337,2,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11827,337,2,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11828,337,3,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11841,337,16,9]),types.vector(["bootstrap2012/function-teachpack",11851,337,26,17]),types.vector(["bootstrap2012/function-teachpack",11869,337,44,18]),types.vector(["bootstrap2012/function-teachpack",11888,337,63,7]),types.vector(["bootstrap2012/function-teachpack",11896,337,71,6]),types.vector(["bootstrap2012/function-teachpack",11840,337,15,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11840,337,15,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11841,337,16,9])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11852,337,27,11]),types.vector(["bootstrap2012/function-teachpack",11864,337,39,3]),types.vector(["bootstrap2012/function-teachpack",11851,337,26,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11851,337,26,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11852,337,27,11])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["bootstrap2012/function-teachpack",11870,337,45,12]),types.vector(["bootstrap2012/function-teachpack",11883,337,58,3]),types.vector(["bootstrap2012/function-teachpack",11869,337,44,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["bootstrap2012/function-teachpack",11869,337,44,18])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["bootstrap2012/function-teachpack",11870,337,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"solid"},{"$":"constant","value":"blue"}]}}}]}}}}}]}}, 'provides': ["pick","sq","subset?","tangent","type","start","string->image","sine","put-image","color->alpha","in?","number->image","overlay-at","cosine","boolean->string","clipart/url","boolean->image"]}; diff --git a/servlet-htdocs/collects/jsworld/google-maps.js b/servlet-htdocs/collects/jsworld/google-maps.js index bb10a15..9f0daad 100644 --- a/servlet-htdocs/collects/jsworld/google-maps.js +++ b/servlet-htdocs/collects/jsworld/google-maps.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["jsworld/google-maps"] = { 'name': "jsworld/google-maps", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"script-url"},{"$":"global-bucket","value":"param-string"},{"$":"global-bucket","value":"params"},{"$":"global-bucket","value":"esc"},{"$":"global-bucket","value":"s"},{"$":"global-bucket","value":"elts"},{"$":"global-bucket","value":"delim"},{"$":"global-bucket","value":"marker-text"},{"$":"global-bucket","value":"marker"},{"$":"global-bucket","value":"response"},{"$":"global-bucket","value":"geocoder"},{"$":"global-bucket","value":"zoom-val"},{"$":"global-bucket","value":"x/y"},{"$":"global-bucket","value":"lat/lng"},{"$":"global-bucket","value":"world-updater"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"effect-updater"},{"$":"global-bucket","value":"center"},{"$":"global-bucket","value":"get-center"},{"$":"global-bucket","value":"handler"},{"$":"global-bucket","value":"map-dom"},{"$":"global-bucket","value":"attribs"},{"$":"global-bucket","value":"load"},{"$":"global-bucket","value":"zoom"},{"$":"global-bucket","value":"lng"},{"$":"global-bucket","value":"lat"},{"$":"global-bucket","value":"mymap"},{"$":"global-bucket","value":"dom"},{"$":"global-bucket","value":"maps"},{"$":"global-bucket","value":"callback"},{"$":"global-bucket","value":"google"},{"$":"global-bucket","value":"tag"},{"$":"global-bucket","value":"url"},{"$":"global-bucket","value":"elem"},{"$":"global-bucket","value":"escape"},{"$":"global-bucket","value":"make-effect:map"},{"$":"global-bucket","value":"make-effect:reverse-geocode"},{"$":"global-bucket","value":"on-map-click!"},{"$":"global-bucket","value":"on-map-drag!"},{"$":"global-bucket","value":"on-map-rightclick!"},{"$":"global-bucket","value":"on-map-dblclick!"},{"$":"global-bucket","value":"my-string-join"},{"$":"global-bucket","value":"make-effect:script"},{"$":"global-bucket","value":"make-effect:map:pan"},{"$":"global-bucket","value":"make-effect:map:zoom"},{"$":"global-bucket","value":"make-effect:map:location"},{"$":"global-bucket","value":"make-effect:map:marker"},{"$":"global-bucket","value":"make-effect:map:clear"},{"$":"global-bucket","value":"js-array->list"},{"$":"global-bucket","value":"list->js-array"},{"$":"global-bucket","value":"loadScript"},{"$":"global-bucket","value":"loadGoogleMaps"},{"$":"global-bucket","value":"jsworld"},{"$":"global-bucket","value":"getElementsByTagName"},{"$":"global-bucket","value":"google-map"},{"$":"global-bucket","value":"form-url"},{"$":"global-bucket","value":"effect:map:zoom?"},{"$":"global-bucket","value":"effect:reverse-geocode-mutator"},{"$":"global-bucket","value":"effect:script"},{"$":"global-bucket","value":"effect:script-mutator"},{"$":"global-bucket","value":"effect:script?"},{"$":"global-bucket","value":"effect:script-accessor"},{"$":"global-bucket","value":"effect:reverse-geocode?"},{"$":"global-bucket","value":"effect:reverse-geocode"},{"$":"global-bucket","value":"effect:reverse-geocode-accessor"},{"$":"global-bucket","value":"effect:map?"},{"$":"global-bucket","value":"effect:map:location?"},{"$":"global-bucket","value":"effect:map:pan?"},{"$":"global-bucket","value":"effect:map:zoom-accessor"},{"$":"global-bucket","value":"effect:map:zoom-mutator"},{"$":"global-bucket","value":"effect:map:zoom"},{"$":"global-bucket","value":"effect:map:marker?"},{"$":"global-bucket","value":"effect:map:pan-accessor"},{"$":"global-bucket","value":"effect:map:pan-mutator"},{"$":"global-bucket","value":"effect:map:pan"},{"$":"global-bucket","value":"effect:map:marker-accessor"},{"$":"global-bucket","value":"effect:map:marker-mutator"},{"$":"global-bucket","value":"effect:map:marker"},{"$":"global-bucket","value":"effect:map"},{"$":"global-bucket","value":"effect:map:clear?"},{"$":"global-bucket","value":"effect:map:location-accessor"},{"$":"global-bucket","value":"effect:map:location-mutator"},{"$":"global-bucket","value":"effect:map:location"},{"$":"global-bucket","value":"effect:map-mutator"},{"$":"global-bucket","value":"effect:map:clear-accessor"},{"$":"global-bucket","value":"effect:map:clear-mutator"},{"$":"global-bucket","value":"effect:map:clear"},{"$":"global-bucket","value":"effect:map-accessor"},{"$":"global-bucket","value":"createElement"},{"$":"global-bucket","value":"document"},{"$":"global-bucket","value":"GLatLng"},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("world-with-effects"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("values"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("substring"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sub1"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("scheme->prim-js"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("second"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("prim-js->scheme"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure->void-js-fun"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("positive?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-set-field!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-world-config"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-effect-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-undefined"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-get-field"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-new"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-get-named-object"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-call"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-div"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("integer?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("exact?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("false"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("first"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("error"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",354,17,8,8])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",364,17,18,19]),types.vector(["jsworld/google-maps",384,17,38,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",363,17,17,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",364,17,18,19])},"rands":[{"$":"constant","value":"document"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",405,18,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",420,18,23,12]),types.vector(["jsworld/google-maps",433,18,36,8]),types.vector(["jsworld/google-maps",442,18,45,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",419,18,22,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",420,18,23,12])},"rands":[{"$":"toplevel","depth":2,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",433,18,36,8])},{"$":"constant","value":"createElement"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",468,19,8,20])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",490,19,30,12]),types.vector(["jsworld/google-maps",503,19,43,8]),types.vector(["jsworld/google-maps",512,19,52,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",489,19,29,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",490,19,30,12])},"rands":[{"$":"toplevel","depth":2,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",503,19,43,8])},{"$":"constant","value":"getElementsByTagName"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",545,20,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",554,20,17,19]),types.vector(["jsworld/google-maps",574,20,37,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",553,20,16,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",554,20,17,19])},"rands":[{"$":"constant","value":"jsworld"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",906,26,9,14])}],"body":{"$":"lam","name":types.symbol("list->js-array"),"locs":[types.vector(["jsworld/google-maps",906,26,9,14]),types.vector(["jsworld/google-maps",921,26,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",927,27,3,15]),types.vector(["jsworld/google-maps",943,27,19,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",926,27,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",927,27,3,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",944,27,20,12]),types.vector(["jsworld/google-maps",957,27,33,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",943,27,19,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",944,27,20,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",972,29,9,14])}],"body":{"$":"lam","name":types.symbol("js-array->list"),"locs":[types.vector(["jsworld/google-maps",972,29,9,14]),types.vector(["jsworld/google-maps",987,29,24,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",995,30,3,12]),types.vector(["jsworld/google-maps",1008,30,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",994,30,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",995,30,3,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1009,30,17,15]),types.vector(["jsworld/google-maps",1025,30,33,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1008,30,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1009,30,17,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1042,32,9,10])}],"body":{"$":"lam","name":types.symbol("loadScript"),"locs":[types.vector(["jsworld/google-maps",1042,32,9,10]),types.vector(["jsworld/google-maps",1053,32,20,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1082,33,24,7]),types.vector(["jsworld/google-maps",1090,33,32,13]),types.vector(["jsworld/google-maps",1104,33,46,8]),types.vector(["jsworld/google-maps",1113,33,55,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1081,33,23,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1082,33,24,7])},"rands":[{"$":"toplevel","depth":5,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1090,33,32,13])},{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1104,33,46,8])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1114,33,56,15]),types.vector(["jsworld/google-maps",1130,33,72,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1113,33,55,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1114,33,56,15])},"rands":[{"$":"constant","value":"script"}]}}}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1165,34,23,12]),types.vector(["jsworld/google-maps",1178,34,36,46]),types.vector(["jsworld/google-maps",1225,34,83,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1164,34,22,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1165,34,23,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1179,34,37,7]),types.vector(["jsworld/google-maps",1187,34,45,20]),types.vector(["jsworld/google-maps",1208,34,66,8]),types.vector(["jsworld/google-maps",1217,34,75,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1178,34,36,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1179,34,37,7])},"rands":[{"$":"toplevel","depth":7,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1187,34,45,20])},{"$":"toplevel","depth":7,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1208,34,66,8])},{"$":"constant","value":"head"}]}}},{"$":"constant","value":"0"}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1250,36,7,13]),types.vector(["jsworld/google-maps",1264,36,21,4]),types.vector(["jsworld/google-maps",1269,36,26,5]),types.vector(["jsworld/google-maps",1275,36,32,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1249,36,6,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1250,36,7,13])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"src"},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1287,37,7,13]),types.vector(["jsworld/google-maps",1301,37,21,4]),types.vector(["jsworld/google-maps",1306,37,26,6]),types.vector(["jsworld/google-maps",1313,37,33,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1286,37,6,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1287,37,7,13])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"type"},{"$":"constant","value":"text/javascript"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1339,38,7,7]),types.vector(["jsworld/google-maps",1347,38,15,32]),types.vector(["jsworld/google-maps",1380,38,48,3]),types.vector(["jsworld/google-maps",1384,38,52,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1338,38,6,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1339,38,7,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1348,38,16,12]),types.vector(["jsworld/google-maps",1361,38,29,3]),types.vector(["jsworld/google-maps",1365,38,33,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1347,38,15,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1348,38,16,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"appendChild"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1397,39,7,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1396,39,6,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1397,39,7,4])},"rands":[]}}}]}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1416,41,9,14])}],"body":{"$":"lam","name":types.symbol("loadGoogleMaps"),"locs":[types.vector(["jsworld/google-maps",1416,41,9,14]),types.vector(["jsworld/google-maps",1431,41,24,3]),types.vector(["jsworld/google-maps",1435,41,28,3]),types.vector(["jsworld/google-maps",1439,41,32,4]),types.vector(["jsworld/google-maps",1444,41,37,3])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1464,43,5,10]),types.vector(["jsworld/google-maps",1475,43,16,120])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1463,43,4,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1464,43,5,10])},"rands":[{"$":"constant","value":"http://www.google.com/jsapi?key=ABQIAAAANuLQS-qn8FP_vP2FRBltExQIToEyJbLNev2L3JVYkG889ZSczxQlHFTiT5TMwWkBl4392LfkmDmJ4A"}]}}},{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("phase2"),"locs":[types.vector(["jsworld/google-maps",1617,44,20,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1688,45,53,19]),types.vector(["jsworld/google-maps",1708,45,73,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1687,45,52,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1688,45,53,19])},"rands":[{"$":"constant","value":"google"}]}}},"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1755,46,35,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1755,46,35,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",1752,46,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1756,46,36,6]),types.vector(["jsworld/google-maps",1763,46,43,6]),types.vector(["jsworld/google-maps",1770,46,50,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1755,46,35,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1756,46,36,6])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1770,46,50,12])}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",1755,46,35,28])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1864,48,38,7]),types.vector(["jsworld/google-maps",1872,48,46,34]),types.vector(["jsworld/google-maps",1954,49,46,5]),types.vector(["jsworld/google-maps",2007,50,46,31]),types.vector(["jsworld/google-maps",2086,51,46,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1863,48,37,245])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1864,48,38,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1873,48,47,19]),types.vector(["jsworld/google-maps",1893,48,67,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1872,48,46,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1873,48,47,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1954,49,46,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2008,50,47,22]),types.vector(["jsworld/google-maps",2031,50,70,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2007,50,46,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2008,50,47,22])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2087,51,47,15]),types.vector(["jsworld/google-maps",2103,51,63,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2086,51,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2087,51,47,15])},"rands":[{"$":"constant","value":500}]}}}]}}}]},"else":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2167,52,57,12]),types.vector(["jsworld/google-maps",2180,52,70,6]),types.vector(["jsworld/google-maps",2187,52,77,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2166,52,56,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2167,52,57,12])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"load"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2257,53,61,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2256,53,60,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2257,53,61,12])},"rands":[]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2358,55,40,13]),types.vector(["jsworld/google-maps",2372,55,54,8]),types.vector(["jsworld/google-maps",2381,55,63,10]),types.vector(["jsworld/google-maps",2392,55,74,1588])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2357,55,39,1624])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2358,55,40,13])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"callback"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2393,55,75,22]),types.vector(["jsworld/google-maps",2492,56,75,1487])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2392,55,74,1588])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2393,55,75,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",2493,56,76,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[7,6,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2602,57,99,12]),types.vector(["jsworld/google-maps",2615,57,112,6]),types.vector(["jsworld/google-maps",2622,57,119,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2601,57,98,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2602,57,99,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"maps"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2731,58,100,6]),types.vector(["jsworld/google-maps",2738,58,107,26]),types.vector(["jsworld/google-maps",2765,58,134,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2730,58,99,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2731,58,100,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2739,58,108,12]),types.vector(["jsworld/google-maps",2752,58,121,4]),types.vector(["jsworld/google-maps",2757,58,126,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2738,58,107,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2739,58,108,12])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"Map2"}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2941,60,82,7]),types.vector(["jsworld/google-maps",2949,60,90,32]),types.vector(["jsworld/google-maps",3072,61,90,5]),types.vector(["jsworld/google-maps",3168,62,90,279]),types.vector(["jsworld/google-maps",3538,65,90,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2940,60,81,621])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2941,60,82,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2950,60,91,12]),types.vector(["jsworld/google-maps",2963,60,104,5]),types.vector(["jsworld/google-maps",2969,60,110,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2949,60,90,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2950,60,91,12])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"setCenter"}]}}},{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3169,62,91,6]),types.vector(["jsworld/google-maps",3176,62,98,28]),types.vector(["jsworld/google-maps",3304,63,98,21]),types.vector(["jsworld/google-maps",3425,64,98,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3168,62,90,279])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3169,62,91,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3177,62,99,12]),types.vector(["jsworld/google-maps",3190,62,112,4]),types.vector(["jsworld/google-maps",3195,62,117,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3176,62,98,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3177,62,99,12])},"rands":[{"$":"localref","unbox?":true,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"LatLng"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3305,63,99,15]),types.vector(["jsworld/google-maps",3321,63,115,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3304,63,98,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3305,63,99,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3426,64,99,15]),types.vector(["jsworld/google-maps",3442,64,115,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3425,64,98,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3426,64,99,15])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3539,65,91,15]),types.vector(["jsworld/google-maps",3555,65,107,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3538,65,90,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3539,65,91,15])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3644,66,82,7]),types.vector(["jsworld/google-maps",3652,66,90,37]),types.vector(["jsworld/google-maps",3690,66,128,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3643,66,81,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3644,66,82,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3653,66,91,12]),types.vector(["jsworld/google-maps",3666,66,104,5]),types.vector(["jsworld/google-maps",3672,66,110,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3652,66,90,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3653,66,91,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"setUIToDefault"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3779,67,82,7]),types.vector(["jsworld/google-maps",3787,67,90,45]),types.vector(["jsworld/google-maps",3833,67,136,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3778,67,81,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3779,67,82,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3788,67,91,12]),types.vector(["jsworld/google-maps",3801,67,104,5]),types.vector(["jsworld/google-maps",3807,67,110,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3787,67,90,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3788,67,91,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"disableDoubleClickZoom"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3945,68,82,13]),types.vector(["jsworld/google-maps",3959,68,96,3]),types.vector(["jsworld/google-maps",3963,68,100,6]),types.vector(["jsworld/google-maps",3970,68,107,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3944,68,81,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3945,68,82,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4022,69,40,7]),types.vector(["jsworld/google-maps",4030,69,48,4]),types.vector(["jsworld/google-maps",4035,69,53,6]),types.vector(["jsworld/google-maps",4042,69,60,24]),types.vector(["jsworld/google-maps",4067,69,85,23]),types.vector(["jsworld/google-maps",4091,69,109,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4021,69,39,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4022,69,40,7])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4043,69,61,15]),types.vector(["jsworld/google-maps",4059,69,77,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4042,69,60,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4043,69,61,15])},"rands":[{"$":"constant","value":"maps"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4068,69,86,15]),types.vector(["jsworld/google-maps",4084,69,102,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4067,69,85,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4068,69,86,15])},"rands":[{"$":"constant","value":"2.x"}]}}},{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4129,72,7,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4128,72,6,8])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4150,74,9,7])}],"body":{"$":"lam","name":types.symbol("GLatLng"),"locs":[types.vector(["jsworld/google-maps",4150,74,9,7]),types.vector(["jsworld/google-maps",4158,74,17,3]),types.vector(["jsworld/google-maps",4162,74,21,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4170,75,3,6]),types.vector(["jsworld/google-maps",4177,75,10,31]),types.vector(["jsworld/google-maps",4209,75,42,21]),types.vector(["jsworld/google-maps",4231,75,64,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4169,75,2,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4170,75,3,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4178,75,11,19]),types.vector(["jsworld/google-maps",4198,75,31,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4177,75,10,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4178,75,11,19])},"rands":[{"$":"constant","value":"GLatLng"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4210,75,43,15]),types.vector(["jsworld/google-maps",4226,75,59,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4209,75,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4210,75,43,15])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4232,75,65,15]),types.vector(["jsworld/google-maps",4248,75,81,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4231,75,64,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4232,75,65,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4784,86,9,10])}],"body":{"$":"lam","name":types.symbol("google-map"),"locs":[types.vector(["jsworld/google-maps",4784,86,9,10]),types.vector(["jsworld/google-maps",4795,86,20,3]),types.vector(["jsworld/google-maps",4799,86,24,3]),types.vector(["jsworld/google-maps",4803,86,28,4]),types.vector(["jsworld/google-maps",4808,86,33,7])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4840,87,23,6]),types.vector(["jsworld/google-maps",4847,87,30,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4839,87,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4840,87,23,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4876,89,7,13]),types.vector(["jsworld/google-maps",4890,89,21,3]),types.vector(["jsworld/google-maps",4894,89,25,15]),types.vector(["jsworld/google-maps",4910,89,41,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4875,89,6,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4876,89,7,13])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"jsworldOpaque"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4911,89,42,15]),types.vector(["jsworld/google-maps",4927,89,58,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4910,89,41,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4911,89,42,15])},"rands":[{"$":"toplevel","depth":5,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4927,89,58,4])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4941,90,7,14]),types.vector(["jsworld/google-maps",4956,90,22,3]),types.vector(["jsworld/google-maps",4960,90,26,3]),types.vector(["jsworld/google-maps",4964,90,30,4]),types.vector(["jsworld/google-maps",4969,90,35,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4940,90,6,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4941,90,7,14])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5683,105,9,12])}],"body":{"$":"lam","name":types.symbol("on-map-drag!"),"locs":[types.vector(["jsworld/google-maps",5683,105,9,12]),types.vector(["jsworld/google-maps",5696,105,22,7]),types.vector(["jsworld/google-maps",5704,105,30,13]),types.vector(["jsworld/google-maps",5718,105,44,14])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5757,106,23,12]),types.vector(["jsworld/google-maps",5770,106,36,7]),types.vector(["jsworld/google-maps",5778,106,44,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5756,106,22,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5757,106,23,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5793,107,5,17]),types.vector(["jsworld/google-maps",5816,108,5,562]),types.vector(["jsworld/google-maps",6419,119,5,20]),types.vector(["jsworld/google-maps",6445,120,5,530])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5792,107,4,1184])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5793,107,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",5817,108,6,6]),types.vector(["jsworld/google-maps",5825,108,14,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5842,109,8,7]),types.vector(["jsworld/google-maps",5850,109,16,34]),types.vector(["jsworld/google-maps",5901,110,16,5]),types.vector(["jsworld/google-maps",5923,111,16,414]),types.vector(["jsworld/google-maps",6354,118,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5841,109,7,536])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5842,109,8,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5851,109,17,19]),types.vector(["jsworld/google-maps",5871,109,37,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5850,109,16,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5851,109,17,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":4,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5901,110,16,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5924,111,17,22]),types.vector(["jsworld/google-maps",5947,111,40,389])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5923,111,16,414])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5924,111,17,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",5948,111,41,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6001,112,43,7]),types.vector(["jsworld/google-maps",6052,113,43,59]),types.vector(["jsworld/google-maps",6155,114,43,5]),types.vector(["jsworld/google-maps",6204,115,43,29]),types.vector(["jsworld/google-maps",6277,116,43,6]),types.vector(["jsworld/google-maps",6327,117,43,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6000,112,42,335])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6001,112,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6053,113,44,12]),types.vector(["jsworld/google-maps",6066,113,57,30]),types.vector(["jsworld/google-maps",6097,113,88,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6052,113,43,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6053,113,44,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6067,113,58,19]),types.vector(["jsworld/google-maps",6087,113,78,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6066,113,57,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6067,113,58,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6155,114,43,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6205,115,44,12]),types.vector(["jsworld/google-maps",6218,115,57,7]),types.vector(["jsworld/google-maps",6226,115,65,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6204,115,43,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6205,115,44,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"constant","value":"drag"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6355,118,17,15]),types.vector(["jsworld/google-maps",6371,118,33,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6354,118,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6355,118,17,15])},"rands":[{"$":"constant","value":4000}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",6420,119,6,6]),types.vector(["jsworld/google-maps",6428,119,14,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6433,119,19,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6432,119,18,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6433,119,19,4])},"rands":[]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",6446,120,6,6]),types.vector(["jsworld/google-maps",6454,120,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":5,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6487,121,30,12]),types.vector(["jsworld/google-maps",6500,121,43,7]),types.vector(["jsworld/google-maps",6508,121,51,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6486,121,29,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6487,121,30,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6552,122,35,12]),types.vector(["jsworld/google-maps",6565,122,48,5]),types.vector(["jsworld/google-maps",6571,122,54,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6551,122,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6552,122,35,12])},"rands":[{"$":"localref","unbox?":true,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"getCenter"}]}}},"body":{"$":"install-value","count":1,"pos":2,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6616,123,31,7]),types.vector(["jsworld/google-maps",6624,123,39,10]),types.vector(["jsworld/google-maps",6635,123,50,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6615,123,30,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6616,123,31,7])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"install-value","count":1,"pos":3,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6671,124,28,7]),types.vector(["jsworld/google-maps",6679,124,36,27]),types.vector(["jsworld/google-maps",6707,124,64,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6670,124,27,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6671,124,28,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6680,124,37,12]),types.vector(["jsworld/google-maps",6693,124,50,6]),types.vector(["jsworld/google-maps",6700,124,57,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6679,124,36,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6680,124,37,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"lat"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"install-value","count":1,"pos":4,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6744,125,28,7]),types.vector(["jsworld/google-maps",6752,125,36,27]),types.vector(["jsworld/google-maps",6780,125,64,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6743,125,27,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6744,125,28,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6753,125,37,12]),types.vector(["jsworld/google-maps",6766,125,50,6]),types.vector(["jsworld/google-maps",6773,125,57,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6752,125,36,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6753,125,37,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"lng"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6800,126,10,18]),types.vector(["jsworld/google-maps",6819,126,29,62]),types.vector(["jsworld/google-maps",6911,127,29,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6799,126,9,174])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6800,126,10,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6820,126,30,14]),types.vector(["jsworld/google-maps",6835,126,45,1]),types.vector(["jsworld/google-maps",6837,126,47,21]),types.vector(["jsworld/google-maps",6859,126,69,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6819,126,29,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6838,126,48,15]),types.vector(["jsworld/google-maps",6854,126,64,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6837,126,47,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6838,126,48,15])},"rands":[{"$":"localref","unbox?":true,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6860,126,70,15]),types.vector(["jsworld/google-maps",6876,126,86,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6859,126,69,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6860,126,70,15])},"rands":[{"$":"localref","unbox?":true,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6912,127,30,13]),types.vector(["jsworld/google-maps",6926,127,44,1]),types.vector(["jsworld/google-maps",6928,127,46,21]),types.vector(["jsworld/google-maps",6950,127,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6911,127,29,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6929,127,47,15]),types.vector(["jsworld/google-maps",6945,127,63,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6928,127,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6929,127,47,15])},"rands":[{"$":"localref","unbox?":true,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6951,127,69,15]),types.vector(["jsworld/google-maps",6967,127,85,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6950,127,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6951,127,69,15])},"rands":[{"$":"localref","unbox?":true,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6989,129,9,13])}],"body":{"$":"lam","name":types.symbol("on-map-click!"),"locs":[types.vector(["jsworld/google-maps",6989,129,9,13]),types.vector(["jsworld/google-maps",7003,129,23,7]),types.vector(["jsworld/google-maps",7011,129,31,13]),types.vector(["jsworld/google-maps",7025,129,45,14])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7066,130,25,12]),types.vector(["jsworld/google-maps",7079,130,38,7]),types.vector(["jsworld/google-maps",7087,130,46,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7065,130,24,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7066,130,25,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7102,131,5,17]),types.vector(["jsworld/google-maps",7125,132,5,563]),types.vector(["jsworld/google-maps",7729,143,5,20]),types.vector(["jsworld/google-maps",7755,144,5,422])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7101,131,4,1077])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7102,131,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",7126,132,6,6]),types.vector(["jsworld/google-maps",7134,132,14,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7151,133,8,7]),types.vector(["jsworld/google-maps",7159,133,16,34]),types.vector(["jsworld/google-maps",7210,134,16,5]),types.vector(["jsworld/google-maps",7232,135,16,415]),types.vector(["jsworld/google-maps",7664,142,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7150,133,7,537])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7151,133,8,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7160,133,17,19]),types.vector(["jsworld/google-maps",7180,133,37,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7159,133,16,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7160,133,17,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":4,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7210,134,16,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7233,135,17,22]),types.vector(["jsworld/google-maps",7256,135,40,390])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7232,135,16,415])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7233,135,17,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",7257,135,41,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7310,136,43,7]),types.vector(["jsworld/google-maps",7361,137,43,59]),types.vector(["jsworld/google-maps",7464,138,43,5]),types.vector(["jsworld/google-maps",7513,139,43,29]),types.vector(["jsworld/google-maps",7586,140,43,7]),types.vector(["jsworld/google-maps",7637,141,43,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7309,136,42,336])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7310,136,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7362,137,44,12]),types.vector(["jsworld/google-maps",7375,137,57,30]),types.vector(["jsworld/google-maps",7406,137,88,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7361,137,43,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7362,137,44,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7376,137,58,19]),types.vector(["jsworld/google-maps",7396,137,78,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7375,137,57,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7376,137,58,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7464,138,43,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7514,139,44,12]),types.vector(["jsworld/google-maps",7527,139,57,7]),types.vector(["jsworld/google-maps",7535,139,65,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7513,139,43,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7514,139,44,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"constant","value":"click"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7665,142,17,15]),types.vector(["jsworld/google-maps",7681,142,33,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7664,142,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7665,142,17,15])},"rands":[{"$":"constant","value":4000}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",7730,143,6,6]),types.vector(["jsworld/google-maps",7738,143,14,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7743,143,19,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7742,143,18,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7743,143,19,4])},"rands":[]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",7756,144,6,6]),types.vector(["jsworld/google-maps",7764,144,14,1]),types.vector(["jsworld/google-maps",7766,144,16,7]),types.vector(["jsworld/google-maps",7774,144,24,7])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7909,145,28,12]),types.vector(["jsworld/google-maps",7922,145,41,7]),types.vector(["jsworld/google-maps",7930,145,49,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7908,145,27,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7909,145,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"x"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7964,146,28,12]),types.vector(["jsworld/google-maps",7977,146,41,7]),types.vector(["jsworld/google-maps",7985,146,49,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7963,146,27,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7964,146,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"y"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8002,147,10,18]),types.vector(["jsworld/google-maps",8021,147,29,62]),types.vector(["jsworld/google-maps",8113,148,29,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8001,147,9,174])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8002,147,10,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8022,147,30,14]),types.vector(["jsworld/google-maps",8037,147,45,1]),types.vector(["jsworld/google-maps",8039,147,47,21]),types.vector(["jsworld/google-maps",8061,147,69,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8021,147,29,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8040,147,48,15]),types.vector(["jsworld/google-maps",8056,147,64,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8039,147,47,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8040,147,48,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8062,147,70,15]),types.vector(["jsworld/google-maps",8078,147,86,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8061,147,69,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8062,147,70,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8114,148,30,13]),types.vector(["jsworld/google-maps",8128,148,44,1]),types.vector(["jsworld/google-maps",8130,148,46,21]),types.vector(["jsworld/google-maps",8152,148,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8113,148,29,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8131,148,47,15]),types.vector(["jsworld/google-maps",8147,148,63,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8130,148,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8131,148,47,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8153,148,69,15]),types.vector(["jsworld/google-maps",8169,148,85,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8152,148,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8153,148,69,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8191,150,9,16])}],"body":{"$":"lam","name":types.symbol("on-map-dblclick!"),"locs":[types.vector(["jsworld/google-maps",8191,150,9,16]),types.vector(["jsworld/google-maps",8208,150,26,7]),types.vector(["jsworld/google-maps",8216,150,34,13]),types.vector(["jsworld/google-maps",8230,150,48,14])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8271,151,25,12]),types.vector(["jsworld/google-maps",8284,151,38,7]),types.vector(["jsworld/google-maps",8292,151,46,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8270,151,24,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8271,151,25,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8307,152,5,17]),types.vector(["jsworld/google-maps",8330,153,5,566]),types.vector(["jsworld/google-maps",8937,164,5,20]),types.vector(["jsworld/google-maps",8963,165,5,422])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8306,152,4,1080])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8307,152,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",8331,153,6,6]),types.vector(["jsworld/google-maps",8339,153,14,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8356,154,8,7]),types.vector(["jsworld/google-maps",8364,154,16,34]),types.vector(["jsworld/google-maps",8415,155,16,5]),types.vector(["jsworld/google-maps",8437,156,16,418]),types.vector(["jsworld/google-maps",8872,163,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8355,154,7,540])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8356,154,8,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8365,154,17,19]),types.vector(["jsworld/google-maps",8385,154,37,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8364,154,16,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8365,154,17,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":4,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8415,155,16,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8438,156,17,22]),types.vector(["jsworld/google-maps",8461,156,40,393])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8437,156,16,418])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8438,156,17,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",8462,156,41,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8515,157,43,7]),types.vector(["jsworld/google-maps",8566,158,43,59]),types.vector(["jsworld/google-maps",8669,159,43,5]),types.vector(["jsworld/google-maps",8718,160,43,29]),types.vector(["jsworld/google-maps",8791,161,43,10]),types.vector(["jsworld/google-maps",8845,162,43,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8514,157,42,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8515,157,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8567,158,44,12]),types.vector(["jsworld/google-maps",8580,158,57,30]),types.vector(["jsworld/google-maps",8611,158,88,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8566,158,43,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8567,158,44,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8581,158,58,19]),types.vector(["jsworld/google-maps",8601,158,78,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8580,158,57,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8581,158,58,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8669,159,43,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8719,160,44,12]),types.vector(["jsworld/google-maps",8732,160,57,7]),types.vector(["jsworld/google-maps",8740,160,65,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8718,160,43,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8719,160,44,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"constant","value":"dblclick"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8873,163,17,15]),types.vector(["jsworld/google-maps",8889,163,33,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8872,163,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8873,163,17,15])},"rands":[{"$":"constant","value":4000}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",8938,164,6,6]),types.vector(["jsworld/google-maps",8946,164,14,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8951,164,19,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8950,164,18,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8951,164,19,4])},"rands":[]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",8964,165,6,6]),types.vector(["jsworld/google-maps",8972,165,14,1]),types.vector(["jsworld/google-maps",8974,165,16,7]),types.vector(["jsworld/google-maps",8982,165,24,7])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9117,166,28,12]),types.vector(["jsworld/google-maps",9130,166,41,7]),types.vector(["jsworld/google-maps",9138,166,49,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9116,166,27,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9117,166,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"x"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9172,167,28,12]),types.vector(["jsworld/google-maps",9185,167,41,7]),types.vector(["jsworld/google-maps",9193,167,49,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9171,167,27,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9172,167,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"y"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9210,168,10,18]),types.vector(["jsworld/google-maps",9229,168,29,62]),types.vector(["jsworld/google-maps",9321,169,29,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9209,168,9,174])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9210,168,10,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9230,168,30,14]),types.vector(["jsworld/google-maps",9245,168,45,1]),types.vector(["jsworld/google-maps",9247,168,47,21]),types.vector(["jsworld/google-maps",9269,168,69,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9229,168,29,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9248,168,48,15]),types.vector(["jsworld/google-maps",9264,168,64,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9247,168,47,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9248,168,48,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9270,168,70,15]),types.vector(["jsworld/google-maps",9286,168,86,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9269,168,69,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9270,168,70,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9322,169,30,13]),types.vector(["jsworld/google-maps",9336,169,44,1]),types.vector(["jsworld/google-maps",9338,169,46,21]),types.vector(["jsworld/google-maps",9360,169,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9321,169,29,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9339,169,47,15]),types.vector(["jsworld/google-maps",9355,169,63,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9338,169,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9339,169,47,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9361,169,69,15]),types.vector(["jsworld/google-maps",9377,169,85,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9360,169,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9361,169,69,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9399,171,9,18])}],"body":{"$":"lam","name":types.symbol("on-map-rightclick!"),"locs":[types.vector(["jsworld/google-maps",9399,171,9,18]),types.vector(["jsworld/google-maps",9418,171,28,7]),types.vector(["jsworld/google-maps",9426,171,36,13]),types.vector(["jsworld/google-maps",9440,171,50,14])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9552,172,25,12]),types.vector(["jsworld/google-maps",9565,172,38,7]),types.vector(["jsworld/google-maps",9573,172,46,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9551,172,24,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9552,172,25,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9588,173,5,17]),types.vector(["jsworld/google-maps",9611,174,5,574]),types.vector(["jsworld/google-maps",10226,185,5,20]),types.vector(["jsworld/google-maps",10252,186,5,311])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9587,173,4,977])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9588,173,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",9612,174,6,6]),types.vector(["jsworld/google-maps",9620,174,14,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9637,175,8,7]),types.vector(["jsworld/google-maps",9645,175,16,34]),types.vector(["jsworld/google-maps",9696,176,16,5]),types.vector(["jsworld/google-maps",9718,177,16,426]),types.vector(["jsworld/google-maps",10161,184,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9636,175,7,548])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9637,175,8,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9646,175,17,19]),types.vector(["jsworld/google-maps",9666,175,37,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9645,175,16,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9646,175,17,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":4,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9696,176,16,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9719,177,17,22]),types.vector(["jsworld/google-maps",9742,177,40,401])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9718,177,16,426])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9719,177,17,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",9743,177,41,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9796,178,43,7]),types.vector(["jsworld/google-maps",9847,179,43,59]),types.vector(["jsworld/google-maps",9950,180,43,5]),types.vector(["jsworld/google-maps",9999,181,43,29]),types.vector(["jsworld/google-maps",10072,182,43,18]),types.vector(["jsworld/google-maps",10134,183,43,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9795,178,42,347])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9796,178,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9848,179,44,12]),types.vector(["jsworld/google-maps",9861,179,57,30]),types.vector(["jsworld/google-maps",9892,179,88,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9847,179,43,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9848,179,44,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9862,179,58,19]),types.vector(["jsworld/google-maps",9882,179,78,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9861,179,57,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9862,179,58,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9950,180,43,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10000,181,44,12]),types.vector(["jsworld/google-maps",10013,181,57,7]),types.vector(["jsworld/google-maps",10021,181,65,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9999,181,43,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10000,181,44,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"constant","value":"singlerightclick"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10162,184,17,15]),types.vector(["jsworld/google-maps",10178,184,33,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10161,184,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10162,184,17,15])},"rands":[{"$":"constant","value":4000}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",10227,185,6,6]),types.vector(["jsworld/google-maps",10235,185,14,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10240,185,19,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10239,185,18,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10240,185,19,4])},"rands":[]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",10253,186,6,6]),types.vector(["jsworld/google-maps",10261,186,14,1]),types.vector(["jsworld/google-maps",10263,186,16,3]),types.vector(["jsworld/google-maps",10267,186,20,3]),types.vector(["jsworld/google-maps",10271,186,24,2])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10303,187,28,12]),types.vector(["jsworld/google-maps",10316,187,41,3]),types.vector(["jsworld/google-maps",10320,187,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10302,187,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10303,187,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"x"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10354,188,28,12]),types.vector(["jsworld/google-maps",10367,188,41,3]),types.vector(["jsworld/google-maps",10371,188,45,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10353,188,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10354,188,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"y"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10388,189,10,18]),types.vector(["jsworld/google-maps",10407,189,29,62]),types.vector(["jsworld/google-maps",10499,190,29,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10387,189,9,174])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10388,189,10,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10408,189,30,14]),types.vector(["jsworld/google-maps",10423,189,45,1]),types.vector(["jsworld/google-maps",10425,189,47,21]),types.vector(["jsworld/google-maps",10447,189,69,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10407,189,29,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10426,189,48,15]),types.vector(["jsworld/google-maps",10442,189,64,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10425,189,47,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10426,189,48,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10448,189,70,15]),types.vector(["jsworld/google-maps",10464,189,86,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10447,189,69,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10448,189,70,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10500,190,30,13]),types.vector(["jsworld/google-maps",10514,190,44,1]),types.vector(["jsworld/google-maps",10516,190,46,21]),types.vector(["jsworld/google-maps",10538,190,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10499,190,29,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10517,190,47,15]),types.vector(["jsworld/google-maps",10533,190,63,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10516,190,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10517,190,47,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10539,190,69,15]),types.vector(["jsworld/google-maps",10555,190,85,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10538,190,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10539,190,69,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11188,198,16,10])},{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11199,198,27,15])},{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11215,198,43,11])},{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11227,198,55,19])},{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11247,198,75,18])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11270,199,3,16]),types.vector(["jsworld/google-maps",11287,199,20,11]),types.vector(["jsworld/google-maps",11320,200,20,2]),types.vector(["jsworld/google-maps",11344,201,20,1]),types.vector(["jsworld/google-maps",11367,202,20,70]),types.vector(["jsworld/google-maps",11458,203,20,3]),types.vector(["jsworld/google-maps",11482,204,20,276])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11269,199,2,490])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11270,199,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map")},{"$":"constant","value":false},{"$":"constant","value":1},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",11368,202,21,6]),types.vector(["jsworld/google-maps",11376,202,29,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11386,202,39,5]),types.vector(["jsworld/google-maps",11392,202,45,11]),types.vector(["jsworld/google-maps",11404,202,57,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11385,202,38,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11386,202,39,5])},"rands":[{"$":"constant","value":types.symbol("effect:map")},{"$":"constant","value":"has no default implementation"}]}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",11483,204,21,6]),types.vector(["jsworld/google-maps",11491,204,29,7]),types.vector(["jsworld/google-maps",11499,204,37,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11531,205,26,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11531,205,26,84])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",11528,205,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11532,205,27,3]),types.vector(["jsworld/google-maps",11563,206,27,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11531,205,26,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11532,205,27,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11564,206,28,6]),types.vector(["jsworld/google-maps",11571,206,35,29]),types.vector(["jsworld/google-maps",11601,206,65,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11563,206,27,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11564,206,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11572,206,36,12]),types.vector(["jsworld/google-maps",11585,206,49,7]),types.vector(["jsworld/google-maps",11593,206,57,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11571,206,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11572,206,36,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11601,206,65,12])}]}}}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",11531,205,26,84])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11677,208,27,5]),types.vector(["jsworld/google-maps",11683,208,33,4]),types.vector(["jsworld/google-maps",11688,208,38,59]),types.vector(["jsworld/google-maps",11748,208,98,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11676,208,26,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11677,208,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 1st argument, given: ~s"},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11778,210,16,15])},{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11794,210,32,20])},{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11815,210,53,16])},{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11832,210,70,24])},{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11857,210,95,23])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11885,211,3,16]),types.vector(["jsworld/google-maps",11902,211,20,16]),types.vector(["jsworld/google-maps",11939,212,20,10]),types.vector(["jsworld/google-maps",11970,213,20,1]),types.vector(["jsworld/google-maps",11992,214,20,185]),types.vector(["jsworld/google-maps",12198,217,20,3]),types.vector(["jsworld/google-maps",12222,218,20,346])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11884,211,2,685])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11885,211,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:zoom")},{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11939,212,20,10])},{"$":"constant","value":1},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",11993,214,21,6]),types.vector(["jsworld/google-maps",12001,214,29,7]),types.vector(["jsworld/google-maps",12009,214,37,8])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12065,215,45,12]),types.vector(["jsworld/google-maps",12078,215,58,7]),types.vector(["jsworld/google-maps",12086,215,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12064,215,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12065,215,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12121,216,25,7]),types.vector(["jsworld/google-maps",12129,216,33,30]),types.vector(["jsworld/google-maps",12160,216,64,5]),types.vector(["jsworld/google-maps",12166,216,70,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12120,216,24,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12121,216,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12130,216,34,12]),types.vector(["jsworld/google-maps",12143,216,47,5]),types.vector(["jsworld/google-maps",12149,216,53,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12129,216,33,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12130,216,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"setZoom"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",12223,218,21,6]),types.vector(["jsworld/google-maps",12231,218,29,3]),types.vector(["jsworld/google-maps",12235,218,33,8]),types.vector(["jsworld/google-maps",12244,218,42,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12276,219,26,126])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12276,219,26,126])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",12273,219,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12281,219,31,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12281,219,31,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",12277,219,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12282,219,32,6]),types.vector(["jsworld/google-maps",12289,219,39,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12281,219,31,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12282,219,32,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",12281,219,31,17])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12330,220,31,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12330,220,31,19])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",12277,219,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12331,220,32,8]),types.vector(["jsworld/google-maps",12340,220,41,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12330,220,31,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12331,220,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",12330,220,31,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12381,221,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12381,221,31,20])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",12277,219,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12382,221,32,9]),types.vector(["jsworld/google-maps",12392,221,42,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12381,221,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12382,221,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",12381,221,31,20])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",12276,219,26,126])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12430,222,27,6]),types.vector(["jsworld/google-maps",12437,222,34,3]),types.vector(["jsworld/google-maps",12441,222,38,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12429,222,26,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12430,222,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12478,223,27,5]),types.vector(["jsworld/google-maps",12484,223,33,4]),types.vector(["jsworld/google-maps",12489,223,38,67]),types.vector(["jsworld/google-maps",12557,223,106,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12477,223,26,89])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12478,223,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 2nd argument, given: ~s"},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12588,225,16,19])},{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12608,225,36,24])},{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12633,225,61,20])},{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12654,225,82,28])},{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12683,225,111,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12715,226,3,16]),types.vector(["jsworld/google-maps",12732,226,20,20]),types.vector(["jsworld/google-maps",12773,227,20,10]),types.vector(["jsworld/google-maps",12804,228,20,1]),types.vector(["jsworld/google-maps",12826,229,20,195]),types.vector(["jsworld/google-maps",13042,232,20,3]),types.vector(["jsworld/google-maps",13066,233,20,308])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12714,226,2,661])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12715,226,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:location")},{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12773,227,20,10])},{"$":"constant","value":2},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",12827,229,21,6]),types.vector(["jsworld/google-maps",12835,229,29,7]),types.vector(["jsworld/google-maps",12843,229,37,3]),types.vector(["jsworld/google-maps",12847,229,41,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12898,230,45,12]),types.vector(["jsworld/google-maps",12911,230,58,7]),types.vector(["jsworld/google-maps",12919,230,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12897,230,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12898,230,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12954,231,25,7]),types.vector(["jsworld/google-maps",12962,231,33,32]),types.vector(["jsworld/google-maps",12995,231,66,5]),types.vector(["jsworld/google-maps",13001,231,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12953,231,24,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12954,231,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12963,231,34,12]),types.vector(["jsworld/google-maps",12976,231,47,5]),types.vector(["jsworld/google-maps",12982,231,53,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12962,231,33,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12963,231,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"setCenter"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13002,231,73,7]),types.vector(["jsworld/google-maps",13010,231,81,3]),types.vector(["jsworld/google-maps",13014,231,85,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13001,231,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13002,231,73,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",13067,233,21,6]),types.vector(["jsworld/google-maps",13075,233,29,7]),types.vector(["jsworld/google-maps",13083,233,37,3]),types.vector(["jsworld/google-maps",13087,233,41,3]),types.vector(["jsworld/google-maps",13091,233,45,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13123,234,26,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13123,234,26,88])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",13120,234,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13156,235,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13156,235,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",13124,234,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13157,235,28,7]),types.vector(["jsworld/google-maps",13165,235,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13156,235,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13157,235,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",13156,235,27,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13197,236,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13197,236,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",13124,234,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13198,236,28,7]),types.vector(["jsworld/google-maps",13206,236,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13197,236,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13198,236,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",13197,236,27,13])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",13123,234,26,88])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13239,237,27,6]),types.vector(["jsworld/google-maps",13246,237,34,7]),types.vector(["jsworld/google-maps",13254,237,42,3]),types.vector(["jsworld/google-maps",13258,237,46,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13238,237,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13239,237,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13290,238,27,5]),types.vector(["jsworld/google-maps",13296,238,33,4]),types.vector(["jsworld/google-maps",13301,238,38,62]),types.vector(["jsworld/google-maps",13364,238,101,3]),types.vector(["jsworld/google-maps",13368,238,105,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13289,238,26,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13290,238,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 2nd and 3rd argument, given: ~s ~s"},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13394,240,16,14])},{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13409,240,31,19])},{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13429,240,51,15])},{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13445,240,67,23])},{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13469,240,91,22])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13496,241,3,16]),types.vector(["jsworld/google-maps",13513,241,20,15]),types.vector(["jsworld/google-maps",13549,242,20,10]),types.vector(["jsworld/google-maps",13580,243,20,1]),types.vector(["jsworld/google-maps",13602,244,20,190]),types.vector(["jsworld/google-maps",13813,247,20,3]),types.vector(["jsworld/google-maps",13837,248,20,308])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13495,241,2,651])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13496,241,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:pan")},{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13549,242,20,10])},{"$":"constant","value":2},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",13603,244,21,6]),types.vector(["jsworld/google-maps",13611,244,29,7]),types.vector(["jsworld/google-maps",13619,244,37,3]),types.vector(["jsworld/google-maps",13623,244,41,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13673,245,45,12]),types.vector(["jsworld/google-maps",13686,245,58,7]),types.vector(["jsworld/google-maps",13694,245,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13672,245,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13673,245,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13729,246,25,7]),types.vector(["jsworld/google-maps",13737,246,33,28]),types.vector(["jsworld/google-maps",13766,246,62,5]),types.vector(["jsworld/google-maps",13772,246,68,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13728,246,24,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13729,246,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13738,246,34,12]),types.vector(["jsworld/google-maps",13751,246,47,5]),types.vector(["jsworld/google-maps",13757,246,53,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13737,246,33,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13738,246,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"panTo"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13773,246,69,7]),types.vector(["jsworld/google-maps",13781,246,77,3]),types.vector(["jsworld/google-maps",13785,246,81,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13772,246,68,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13773,246,69,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",13838,248,21,6]),types.vector(["jsworld/google-maps",13846,248,29,7]),types.vector(["jsworld/google-maps",13854,248,37,3]),types.vector(["jsworld/google-maps",13858,248,41,3]),types.vector(["jsworld/google-maps",13862,248,45,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13894,249,26,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13894,249,26,88])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",13891,249,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13927,250,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13927,250,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",13895,249,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13928,250,28,7]),types.vector(["jsworld/google-maps",13936,250,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13927,250,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13928,250,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",13927,250,27,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13968,251,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13968,251,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",13895,249,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13969,251,28,7]),types.vector(["jsworld/google-maps",13977,251,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13968,251,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13969,251,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",13968,251,27,13])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",13894,249,26,88])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14010,252,27,6]),types.vector(["jsworld/google-maps",14017,252,34,7]),types.vector(["jsworld/google-maps",14025,252,42,3]),types.vector(["jsworld/google-maps",14029,252,46,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14009,252,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14010,252,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14061,253,27,5]),types.vector(["jsworld/google-maps",14067,253,33,4]),types.vector(["jsworld/google-maps",14072,253,38,62]),types.vector(["jsworld/google-maps",14135,253,101,3]),types.vector(["jsworld/google-maps",14139,253,105,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14060,253,26,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14061,253,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 2nd and 3rd argument, given: ~s ~s"},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14165,255,16,16])},{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14182,255,33,21])},{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14204,255,55,17])},{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14222,255,73,25])},{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14248,255,99,24])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14277,256,3,16]),types.vector(["jsworld/google-maps",14294,256,20,17]),types.vector(["jsworld/google-maps",14332,257,20,10]),types.vector(["jsworld/google-maps",14363,258,20,1]),types.vector(["jsworld/google-maps",14385,259,20,173]),types.vector(["jsworld/google-maps",14579,262,20,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14276,256,2,307])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14277,256,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:clear")},{"$":"toplevel","depth":5,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14332,257,20,10])},{"$":"constant","value":0},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",14386,259,21,6]),types.vector(["jsworld/google-maps",14394,259,29,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14448,260,45,12]),types.vector(["jsworld/google-maps",14461,260,58,7]),types.vector(["jsworld/google-maps",14469,260,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14447,260,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14448,260,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14504,261,25,7]),types.vector(["jsworld/google-maps",14512,261,33,36]),types.vector(["jsworld/google-maps",14549,261,70,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14503,261,24,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14504,261,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14513,261,34,12]),types.vector(["jsworld/google-maps",14526,261,47,5]),types.vector(["jsworld/google-maps",14532,261,53,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14512,261,33,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14513,261,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"clearOverlays"}]}}},{"$":"localref","unbox?":true,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"constant","value":types.EMPTY}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14602,264,16,22])},{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14625,264,39,27])},{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14653,264,67,23])},{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14677,264,91,31])},{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14709,264,123,30])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14744,265,3,16]),types.vector(["jsworld/google-maps",14761,265,20,23]),types.vector(["jsworld/google-maps",14805,266,20,2]),types.vector(["jsworld/google-maps",14828,267,20,1]),types.vector(["jsworld/google-maps",14850,268,20,235]),types.vector(["jsworld/google-maps",15107,271,20,4]),types.vector(["jsworld/google-maps",15132,272,20,102])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14743,265,2,492])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14744,265,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:reverse-geocode")},{"$":"constant","value":false},{"$":"constant","value":3},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",14851,268,21,6]),types.vector(["jsworld/google-maps",14859,268,29,3]),types.vector(["jsworld/google-maps",14863,268,33,3]),types.vector(["jsworld/google-maps",14867,268,37,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14925,269,48,6]),types.vector(["jsworld/google-maps",14932,269,55,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14924,269,47,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14925,269,48,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14933,269,56,19]),types.vector(["jsworld/google-maps",14953,269,76,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14932,269,55,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14933,269,56,19])},"rands":[{"$":"constant","value":"GClientGeocoder"}]}}}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15000,270,25,7]),types.vector(["jsworld/google-maps",15008,270,33,38]),types.vector(["jsworld/google-maps",15047,270,72,8]),types.vector(["jsworld/google-maps",15056,270,81,17]),types.vector(["jsworld/google-maps",15074,270,99,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14999,270,24,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15000,270,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15009,270,34,12]),types.vector(["jsworld/google-maps",15022,270,47,8]),types.vector(["jsworld/google-maps",15031,270,56,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15008,270,33,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15009,270,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"getLocations"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15057,270,82,7]),types.vector(["jsworld/google-maps",15065,270,90,3]),types.vector(["jsworld/google-maps",15069,270,94,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15056,270,81,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15057,270,82,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"constant","value":types.list([2])},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",15133,272,21,6]),types.vector(["jsworld/google-maps",15141,272,29,3]),types.vector(["jsworld/google-maps",15145,272,33,3]),types.vector(["jsworld/google-maps",15149,272,37,8]),types.vector(["jsworld/google-maps",15158,272,46,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15209,273,23,6]),types.vector(["jsworld/google-maps",15216,273,30,3]),types.vector(["jsworld/google-maps",15220,273,34,3]),types.vector(["jsworld/google-maps",15224,273,38,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15208,273,22,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15209,273,23,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15309,277,16,17])},{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15327,277,34,22])},{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15350,277,57,18])},{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15369,277,76,26])},{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15396,277,103,25])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15426,278,3,16]),types.vector(["jsworld/google-maps",15443,278,20,18]),types.vector(["jsworld/google-maps",15482,279,20,10]),types.vector(["jsworld/google-maps",15513,280,20,1]),types.vector(["jsworld/google-maps",15535,281,20,1018]),types.vector(["jsworld/google-maps",16595,298,20,3]),types.vector(["jsworld/google-maps",16619,299,20,397])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15425,278,2,1592])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15426,278,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:marker")},{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15482,279,20,10])},{"$":"constant","value":3},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",15536,281,21,6]),types.vector(["jsworld/google-maps",15544,281,29,7]),types.vector(["jsworld/google-maps",15552,281,37,3]),types.vector(["jsworld/google-maps",15556,281,41,3]),types.vector(["jsworld/google-maps",15560,281,45,11])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15618,282,45,12]),types.vector(["jsworld/google-maps",15631,282,58,7]),types.vector(["jsworld/google-maps",15639,282,66,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15617,282,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15618,282,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15694,283,46,6]),types.vector(["jsworld/google-maps",15748,284,46,31]),types.vector(["jsworld/google-maps",15827,285,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15693,283,45,152])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15694,283,46,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15749,284,47,19]),types.vector(["jsworld/google-maps",15769,284,67,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15748,284,46,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15749,284,47,19])},"rands":[{"$":"constant","value":"GMarker"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15828,285,47,7]),types.vector(["jsworld/google-maps",15836,285,55,3]),types.vector(["jsworld/google-maps",15840,285,59,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15827,285,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15828,285,47,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15906,287,27,7]),types.vector(["jsworld/google-maps",15941,288,27,59]),types.vector(["jsworld/google-maps",16028,289,27,5]),types.vector(["jsworld/google-maps",16061,290,27,6]),types.vector(["jsworld/google-maps",16095,291,27,7]),types.vector(["jsworld/google-maps",16130,292,27,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15905,287,26,538])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15906,287,27,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15942,288,28,12]),types.vector(["jsworld/google-maps",15955,288,41,30]),types.vector(["jsworld/google-maps",15986,288,72,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15941,288,27,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15942,288,28,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15956,288,42,19]),types.vector(["jsworld/google-maps",15976,288,62,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15955,288,41,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15956,288,42,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16028,289,27,5])},{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"click"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16131,292,28,22]),types.vector(["jsworld/google-maps",16154,292,51,287])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16130,292,27,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16131,292,28,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",16155,292,52,6]),types.vector(["jsworld/google-maps",16163,292,60,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[8,7,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16226,293,54,7]),types.vector(["jsworld/google-maps",16234,293,62,42]),types.vector(["jsworld/google-maps",16340,294,62,6]),types.vector(["jsworld/google-maps",16410,295,62,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16225,293,53,215])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16226,293,54,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16235,293,63,12]),types.vector(["jsworld/google-maps",16248,293,76,6]),types.vector(["jsworld/google-maps",16255,293,83,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16234,293,62,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16235,293,63,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"openInfoWindowHtml"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16411,295,63,15]),types.vector(["jsworld/google-maps",16427,295,79,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16410,295,62,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16411,295,63,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16471,296,27,7]),types.vector(["jsworld/google-maps",16479,296,35,33]),types.vector(["jsworld/google-maps",16513,296,69,5]),types.vector(["jsworld/google-maps",16519,296,75,6]),types.vector(["jsworld/google-maps",16526,296,82,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16470,296,26,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16471,296,27,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16480,296,36,12]),types.vector(["jsworld/google-maps",16493,296,49,5]),types.vector(["jsworld/google-maps",16499,296,55,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16479,296,35,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16480,296,36,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"addOverlay"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16527,296,83,15]),types.vector(["jsworld/google-maps",16543,296,99,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16526,296,82,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16527,296,83,15])},"rands":[{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16543,296,99,5])}]}}}]}}}]}}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",16620,299,21,6]),types.vector(["jsworld/google-maps",16628,299,29,7]),types.vector(["jsworld/google-maps",16636,299,37,3]),types.vector(["jsworld/google-maps",16640,299,41,3]),types.vector(["jsworld/google-maps",16644,299,45,4]),types.vector(["jsworld/google-maps",16649,299,50,4])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16681,300,26,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16681,300,26,130])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",16678,300,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16714,301,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16714,301,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",16682,300,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16715,301,28,7]),types.vector(["jsworld/google-maps",16723,301,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16714,301,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16715,301,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",16714,301,27,13])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16755,302,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16755,302,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",16682,300,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16756,302,28,7]),types.vector(["jsworld/google-maps",16764,302,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16755,302,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16756,302,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",16755,302,27,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16796,303,27,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16796,303,27,14])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",16682,300,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16797,303,28,7]),types.vector(["jsworld/google-maps",16805,303,36,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16796,303,27,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16797,303,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",16796,303,27,14])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",16681,300,26,130])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16839,304,27,6]),types.vector(["jsworld/google-maps",16846,304,34,7]),types.vector(["jsworld/google-maps",16854,304,42,3]),types.vector(["jsworld/google-maps",16858,304,46,3]),types.vector(["jsworld/google-maps",16862,304,50,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16838,304,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16839,304,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16895,305,27,5]),types.vector(["jsworld/google-maps",16901,305,33,4]),types.vector(["jsworld/google-maps",16906,305,38,94]),types.vector(["jsworld/google-maps",17001,305,133,3]),types.vector(["jsworld/google-maps",17005,305,137,3]),types.vector(["jsworld/google-maps",17009,305,141,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16894,305,26,120])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16895,305,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 2nd and 3rd argument and as 4th argument, given: ~s ~s ~s"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17029,307,9,14])}],"body":{"$":"lam","name":types.symbol("my-string-join"),"locs":[types.vector(["jsworld/google-maps",17029,307,9,14]),types.vector(["jsworld/google-maps",17044,307,24,4]),types.vector(["jsworld/google-maps",17049,307,29,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17090,309,13,5]),types.vector(["jsworld/google-maps",17096,309,19,65]),types.vector(["jsworld/google-maps",17181,311,19,2]),types.vector(["jsworld/google-maps",17203,312,19,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17089,309,12,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17090,309,13,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",17097,309,20,6]),types.vector(["jsworld/google-maps",17105,309,28,2]),types.vector(["jsworld/google-maps",17108,309,31,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17134,310,22,13]),types.vector(["jsworld/google-maps",17148,310,36,2]),types.vector(["jsworld/google-maps",17151,310,39,5]),types.vector(["jsworld/google-maps",17157,310,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17133,310,21,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17134,310,22,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"constant","value":""},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17219,313,8,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17219,313,8,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",17216,313,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17220,313,9,1]),types.vector(["jsworld/google-maps",17222,313,11,17]),types.vector(["jsworld/google-maps",17240,313,29,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17219,313,8,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17220,313,9,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17223,313,12,13]),types.vector(["jsworld/google-maps",17237,313,26,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17222,313,11,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17223,313,12,13])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",17219,313,8,23])}]}}},"then":{"$":"constant","value":""},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17263,315,9,9]),types.vector(["jsworld/google-maps",17273,315,19,1]),types.vector(["jsworld/google-maps",17275,315,21,1]),types.vector(["jsworld/google-maps",17277,315,23,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17262,315,8,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17263,315,9,9])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17278,315,24,4]),types.vector(["jsworld/google-maps",17283,315,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17277,315,23,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17278,315,24,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17284,315,30,13]),types.vector(["jsworld/google-maps",17298,315,44,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17283,315,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17284,315,30,13])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17316,317,9,6])}],"body":{"$":"lam","name":types.symbol("escape"),"locs":[types.vector(["jsworld/google-maps",17316,317,9,6]),types.vector(["jsworld/google-maps",17323,317,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17349,318,23,19]),types.vector(["jsworld/google-maps",17369,318,43,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17348,318,22,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17349,318,23,19])},"rands":[{"$":"constant","value":"escape"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17386,319,5,15]),types.vector(["jsworld/google-maps",17402,319,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17385,319,4,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17386,319,5,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17403,319,22,7]),types.vector(["jsworld/google-maps",17411,319,30,3]),types.vector(["jsworld/google-maps",17415,319,34,5]),types.vector(["jsworld/google-maps",17421,319,40,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17402,319,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17403,319,22,7])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17415,319,34,5])},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17437,321,9,8])}],"body":{"$":"lam","name":types.symbol("form-url"),"locs":[types.vector(["jsworld/google-maps",17437,321,9,8]),types.vector(["jsworld/google-maps",17446,321,18,3]),types.vector(["jsworld/google-maps",17450,321,22,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17501,323,32,14]),types.vector(["jsworld/google-maps",17549,324,32,360]),types.vector(["jsworld/google-maps",17942,330,32,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17500,323,31,446])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17501,323,32,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17550,324,33,3]),types.vector(["jsworld/google-maps",17554,324,37,88]),types.vector(["jsworld/google-maps",17681,326,37,227])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17549,324,32,360])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17550,324,33,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",17555,324,38,6]),types.vector(["jsworld/google-maps",17563,324,46,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17607,325,40,14]),types.vector(["jsworld/google-maps",17622,325,55,14]),types.vector(["jsworld/google-maps",17637,325,70,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17606,325,39,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17607,325,40,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17623,325,56,3]),types.vector(["jsworld/google-maps",17627,325,60,6]),types.vector(["jsworld/google-maps",17634,325,67,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17622,325,55,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17623,325,56,3])},"rands":[{"$":"toplevel","depth":4,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17627,325,60,6])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"="}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17682,326,38,6]),types.vector(["jsworld/google-maps",17689,326,45,6]),types.vector(["jsworld/google-maps",17742,327,45,165])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17681,326,37,227])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17682,326,38,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17743,327,46,4]),types.vector(["jsworld/google-maps",17794,328,46,22]),types.vector(["jsworld/google-maps",17864,329,46,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17742,327,45,165])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17743,327,46,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17795,328,47,4]),types.vector(["jsworld/google-maps",17800,328,52,8]),types.vector(["jsworld/google-maps",17809,328,61,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17794,328,46,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17795,328,47,4])},"rands":[{"$":"constant","value":"output"},{"$":"constant","value":"json"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17865,329,47,4]),types.vector(["jsworld/google-maps",17870,329,52,10]),types.vector(["jsworld/google-maps",17881,329,63,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17864,329,46,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17865,329,47,4])},"rands":[{"$":"constant","value":"callback"},{"$":"constant","value":"script_effect_callback"}]}}}]}}}]}}}]}}},{"$":"constant","value":"&"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17954,331,5,13]),types.vector(["jsworld/google-maps",17968,331,19,3]),types.vector(["jsworld/google-maps",17972,331,23,3]),types.vector(["jsworld/google-maps",17976,331,27,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17953,331,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17954,331,5,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"?"},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18009,333,16,13])},{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18023,333,30,18])},{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18042,333,49,14])},{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18057,333,64,22])},{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18080,333,87,21])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18106,334,3,16]),types.vector(["jsworld/google-maps",18123,334,20,14]),types.vector(["jsworld/google-maps",18158,335,20,2]),types.vector(["jsworld/google-maps",18181,336,20,1]),types.vector(["jsworld/google-maps",18203,337,20,294]),types.vector(["jsworld/google-maps",18519,342,20,4]),types.vector(["jsworld/google-maps",18544,343,20,907])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18105,334,2,1347])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18106,334,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:script")},{"$":"constant","value":false},{"$":"constant","value":3},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",18204,337,21,6]),types.vector(["jsworld/google-maps",18212,337,29,3]),types.vector(["jsworld/google-maps",18216,337,33,6]),types.vector(["jsworld/google-maps",18223,337,40,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18284,338,50,8]),types.vector(["jsworld/google-maps",18293,338,59,3]),types.vector(["jsworld/google-maps",18297,338,63,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18283,338,49,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18284,338,50,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18365,340,27,13]),types.vector(["jsworld/google-maps",18379,340,41,30]),types.vector(["jsworld/google-maps",18410,340,72,24]),types.vector(["jsworld/google-maps",18435,340,97,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18364,340,26,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18365,340,27,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18380,340,42,19]),types.vector(["jsworld/google-maps",18400,340,62,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18379,340,41,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18380,340,42,19])},"rands":[{"$":"constant","value":"window"}]}}},{"$":"constant","value":"script_effect_callback"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18472,341,27,10]),types.vector(["jsworld/google-maps",18483,341,38,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18471,341,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18472,341,27,10])},"rands":[{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"constant","value":types.list([2])},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",18545,343,21,6]),types.vector(["jsworld/google-maps",18553,343,29,3]),types.vector(["jsworld/google-maps",18557,343,33,6]),types.vector(["jsworld/google-maps",18564,343,40,8]),types.vector(["jsworld/google-maps",18573,343,49,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18605,344,26,462])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18605,344,26,462])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",18602,344,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18637,345,27,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18637,345,27,14])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18638,345,28,5]),types.vector(["jsworld/google-maps",18644,345,34,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18637,345,27,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18638,345,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18637,345,27,14])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18679,346,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18679,346,27,21])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18680,346,28,6]),types.vector(["jsworld/google-maps",18687,346,35,5]),types.vector(["jsworld/google-maps",18693,346,41,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18679,346,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18680,346,28,6])},"rands":[{"$":"toplevel","depth":10,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18687,346,35,5])},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18679,346,27,21])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18728,347,27,248])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18728,347,27,248])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18729,347,28,6]),types.vector(["jsworld/google-maps",18736,347,35,197]),types.vector(["jsworld/google-maps",18969,351,35,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18728,347,27,248])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18729,347,28,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",18737,347,36,6]),types.vector(["jsworld/google-maps",18745,347,44,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[10],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18790,348,42,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18790,348,42,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18786,348,38,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18791,348,43,1]),types.vector(["jsworld/google-maps",18793,348,45,10]),types.vector(["jsworld/google-maps",18804,348,56,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18790,348,42,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18791,348,43,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18794,348,46,6]),types.vector(["jsworld/google-maps",18801,348,53,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18793,348,45,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18794,348,46,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18790,348,42,16])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18849,349,42,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18849,349,42,19])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18786,348,38,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18850,349,43,7]),types.vector(["jsworld/google-maps",18858,349,51,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18849,349,42,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18850,349,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18859,349,52,5]),types.vector(["jsworld/google-maps",18865,349,58,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18858,349,51,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18859,349,52,5])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18849,349,42,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18911,350,42,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18911,350,42,20])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18786,348,38,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18912,350,43,7]),types.vector(["jsworld/google-maps",18920,350,51,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18911,350,42,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18912,350,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18921,350,52,6]),types.vector(["jsworld/google-maps",18928,350,59,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18920,350,51,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18921,350,52,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18911,350,42,20])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18728,347,27,248])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19004,352,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19004,352,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19005,352,28,7]),types.vector(["jsworld/google-maps",19013,352,36,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19004,352,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19005,352,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",19004,352,27,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19045,353,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19045,353,27,21])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19046,353,28,10]),types.vector(["jsworld/google-maps",19057,353,39,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19045,353,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19046,353,28,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",19045,353,27,21])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",18605,344,26,462])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19095,354,27,6]),types.vector(["jsworld/google-maps",19102,354,34,3]),types.vector(["jsworld/google-maps",19106,354,38,6]),types.vector(["jsworld/google-maps",19113,354,45,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19094,354,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19095,354,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19150,355,27,5]),types.vector(["jsworld/google-maps",19156,355,33,4]),types.vector(["jsworld/google-maps",19195,356,33,134]),types.vector(["jsworld/google-maps",19363,357,33,3]),types.vector(["jsworld/google-maps",19400,358,33,6]),types.vector(["jsworld/google-maps",19440,359,33,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19149,355,26,300])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19150,355,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 1st argument, as 2nd argument, and as 3rd argument: given ~s ~s ~s"},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}}]}}, 'provides': ["make-effect:map:zoom","on-map-dblclick!","on-map-drag!","on-map-rightclick!","make-effect:script","on-map-click!","make-effect:reverse-geocode","make-effect:map:location","make-effect:map:marker","make-effect:map:pan","google-map","make-effect:map:clear"]}; +window.COLLECTIONS["jsworld/google-maps"] = { 'name': "jsworld/google-maps", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"script-url"},{"$":"global-bucket","value":"param-string"},{"$":"global-bucket","value":"params"},{"$":"global-bucket","value":"esc"},{"$":"global-bucket","value":"s"},{"$":"global-bucket","value":"elts"},{"$":"global-bucket","value":"delim"},{"$":"global-bucket","value":"marker-text"},{"$":"global-bucket","value":"marker"},{"$":"global-bucket","value":"response"},{"$":"global-bucket","value":"geocoder"},{"$":"global-bucket","value":"zoom-val"},{"$":"global-bucket","value":"x/y"},{"$":"global-bucket","value":"lat/lng"},{"$":"global-bucket","value":"world-updater"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"effect-updater"},{"$":"global-bucket","value":"center"},{"$":"global-bucket","value":"get-center"},{"$":"global-bucket","value":"handler"},{"$":"global-bucket","value":"map-dom"},{"$":"global-bucket","value":"attribs"},{"$":"global-bucket","value":"load"},{"$":"global-bucket","value":"zoom"},{"$":"global-bucket","value":"lng"},{"$":"global-bucket","value":"lat"},{"$":"global-bucket","value":"mymap"},{"$":"global-bucket","value":"dom"},{"$":"global-bucket","value":"maps"},{"$":"global-bucket","value":"callback"},{"$":"global-bucket","value":"google"},{"$":"global-bucket","value":"tag"},{"$":"global-bucket","value":"url"},{"$":"global-bucket","value":"elem"},{"$":"global-bucket","value":"escape"},{"$":"global-bucket","value":"make-effect:map"},{"$":"global-bucket","value":"make-effect:reverse-geocode"},{"$":"global-bucket","value":"on-map-click!"},{"$":"global-bucket","value":"on-map-drag!"},{"$":"global-bucket","value":"on-map-rightclick!"},{"$":"global-bucket","value":"on-map-dblclick!"},{"$":"global-bucket","value":"my-string-join"},{"$":"global-bucket","value":"make-effect:script"},{"$":"global-bucket","value":"make-effect:map:pan"},{"$":"global-bucket","value":"make-effect:map:zoom"},{"$":"global-bucket","value":"make-effect:map:location"},{"$":"global-bucket","value":"make-effect:map:marker"},{"$":"global-bucket","value":"make-effect:map:clear"},{"$":"global-bucket","value":"js-array->list"},{"$":"global-bucket","value":"list->js-array"},{"$":"global-bucket","value":"loadScript"},{"$":"global-bucket","value":"loadGoogleMaps"},{"$":"global-bucket","value":"jsworld"},{"$":"global-bucket","value":"getElementsByTagName"},{"$":"global-bucket","value":"google-map"},{"$":"global-bucket","value":"form-url"},{"$":"global-bucket","value":"effect:map:zoom?"},{"$":"global-bucket","value":"effect:reverse-geocode-mutator"},{"$":"global-bucket","value":"effect:script"},{"$":"global-bucket","value":"effect:script-mutator"},{"$":"global-bucket","value":"effect:script?"},{"$":"global-bucket","value":"effect:script-accessor"},{"$":"global-bucket","value":"effect:reverse-geocode?"},{"$":"global-bucket","value":"effect:reverse-geocode"},{"$":"global-bucket","value":"effect:reverse-geocode-accessor"},{"$":"global-bucket","value":"effect:map?"},{"$":"global-bucket","value":"effect:map:location?"},{"$":"global-bucket","value":"effect:map:pan?"},{"$":"global-bucket","value":"effect:map:zoom-accessor"},{"$":"global-bucket","value":"effect:map:zoom-mutator"},{"$":"global-bucket","value":"effect:map:zoom"},{"$":"global-bucket","value":"effect:map:marker?"},{"$":"global-bucket","value":"effect:map:pan-accessor"},{"$":"global-bucket","value":"effect:map:pan-mutator"},{"$":"global-bucket","value":"effect:map:pan"},{"$":"global-bucket","value":"effect:map:marker-accessor"},{"$":"global-bucket","value":"effect:map:marker-mutator"},{"$":"global-bucket","value":"effect:map:marker"},{"$":"global-bucket","value":"effect:map"},{"$":"global-bucket","value":"effect:map:clear?"},{"$":"global-bucket","value":"effect:map:location-accessor"},{"$":"global-bucket","value":"effect:map:location-mutator"},{"$":"global-bucket","value":"effect:map:location"},{"$":"global-bucket","value":"effect:map-mutator"},{"$":"global-bucket","value":"effect:map:clear-accessor"},{"$":"global-bucket","value":"effect:map:clear-mutator"},{"$":"global-bucket","value":"effect:map:clear"},{"$":"global-bucket","value":"effect:map-accessor"},{"$":"global-bucket","value":"createElement"},{"$":"global-bucket","value":"document"},{"$":"global-bucket","value":"GLatLng"},{"$":"module-variable","sym":types.symbol("true"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("vector->list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("world-with-effects"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("verify-boolean-branch-value"),"modidx":{"$":"module-path","path":"moby/runtime/kernel/misc","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("values"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("substring"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("sub1"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("string-length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("scheme->prim-js"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("second"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("prim-js->scheme"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure->void-js-fun"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("procedure?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("not"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("positive?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("number?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-set-field!"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-world-config"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("map"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-effect-type"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list->vector"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("list"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("length"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-undefined"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("equal?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-get-field"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-make-hash"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-new"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-get-named-object"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-call"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-div"),"modidx":{"$":"module-path","path":"moby/jsworld","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("integer?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("exact?"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("foldr"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("false"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("first"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("error"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("append"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("andmap"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("="),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",354,17,8,8])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",364,17,18,19]),types.vector(["jsworld/google-maps",384,17,38,10]),types.vector(["jsworld/google-maps",363,17,17,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",363,17,17,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",364,17,18,19])},"rands":[{"$":"constant","value":"document"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",405,18,8,13])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",420,18,23,12]),types.vector(["jsworld/google-maps",433,18,36,8]),types.vector(["jsworld/google-maps",442,18,45,15]),types.vector(["jsworld/google-maps",419,18,22,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",419,18,22,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",420,18,23,12])},"rands":[{"$":"toplevel","depth":2,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",433,18,36,8])},{"$":"constant","value":"createElement"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",468,19,8,20])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",490,19,30,12]),types.vector(["jsworld/google-maps",503,19,43,8]),types.vector(["jsworld/google-maps",512,19,52,22]),types.vector(["jsworld/google-maps",489,19,29,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",489,19,29,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",490,19,30,12])},"rands":[{"$":"toplevel","depth":2,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",503,19,43,8])},{"$":"constant","value":"getElementsByTagName"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":53,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",545,20,8,7])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",554,20,17,19]),types.vector(["jsworld/google-maps",574,20,37,9]),types.vector(["jsworld/google-maps",553,20,16,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",553,20,16,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",554,20,17,19])},"rands":[{"$":"constant","value":"jsworld"}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":50,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",906,26,9,14])}],"body":{"$":"lam","name":types.symbol("list->js-array"),"locs":[types.vector(["jsworld/google-maps",906,26,9,14]),types.vector(["jsworld/google-maps",921,26,24,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",927,27,3,15]),types.vector(["jsworld/google-maps",943,27,19,16]),types.vector(["jsworld/google-maps",926,27,2,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",926,27,2,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",927,27,3,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",944,27,20,12]),types.vector(["jsworld/google-maps",957,27,33,1]),types.vector(["jsworld/google-maps",943,27,19,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",943,27,19,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":115,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",944,27,20,12])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":49,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",972,29,9,14])}],"body":{"$":"lam","name":types.symbol("js-array->list"),"locs":[types.vector(["jsworld/google-maps",972,29,9,14]),types.vector(["jsworld/google-maps",987,29,24,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",995,30,3,12]),types.vector(["jsworld/google-maps",1008,30,16,21]),types.vector(["jsworld/google-maps",994,30,2,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",994,30,2,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":93,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",995,30,3,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1009,30,17,15]),types.vector(["jsworld/google-maps",1025,30,33,3]),types.vector(["jsworld/google-maps",1008,30,16,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1008,30,16,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1009,30,17,15])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1042,32,9,10])}],"body":{"$":"lam","name":types.symbol("loadScript"),"locs":[types.vector(["jsworld/google-maps",1042,32,9,10]),types.vector(["jsworld/google-maps",1053,32,20,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1082,33,24,7]),types.vector(["jsworld/google-maps",1090,33,32,13]),types.vector(["jsworld/google-maps",1104,33,46,8]),types.vector(["jsworld/google-maps",1113,33,55,26]),types.vector(["jsworld/google-maps",1081,33,23,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1081,33,23,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1082,33,24,7])},"rands":[{"$":"toplevel","depth":5,"pos":89,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1090,33,32,13])},{"$":"toplevel","depth":5,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1104,33,46,8])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1114,33,56,15]),types.vector(["jsworld/google-maps",1130,33,72,8]),types.vector(["jsworld/google-maps",1113,33,55,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1113,33,55,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1114,33,56,15])},"rands":[{"$":"constant","value":"script"}]}}}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1165,34,23,12]),types.vector(["jsworld/google-maps",1178,34,36,46]),types.vector(["jsworld/google-maps",1225,34,83,3]),types.vector(["jsworld/google-maps",1164,34,22,65])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1164,34,22,65])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1165,34,23,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1179,34,37,7]),types.vector(["jsworld/google-maps",1187,34,45,20]),types.vector(["jsworld/google-maps",1208,34,66,8]),types.vector(["jsworld/google-maps",1217,34,75,6]),types.vector(["jsworld/google-maps",1178,34,36,46])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1178,34,36,46])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1179,34,37,7])},"rands":[{"$":"toplevel","depth":7,"pos":54,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1187,34,45,20])},{"$":"toplevel","depth":7,"pos":90,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1208,34,66,8])},{"$":"constant","value":"head"}]}}},{"$":"constant","value":"0"}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1250,36,7,13]),types.vector(["jsworld/google-maps",1264,36,21,4]),types.vector(["jsworld/google-maps",1269,36,26,5]),types.vector(["jsworld/google-maps",1275,36,32,3]),types.vector(["jsworld/google-maps",1249,36,6,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1249,36,6,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1250,36,7,13])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"src"},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1287,37,7,13]),types.vector(["jsworld/google-maps",1301,37,21,4]),types.vector(["jsworld/google-maps",1306,37,26,6]),types.vector(["jsworld/google-maps",1313,37,33,17]),types.vector(["jsworld/google-maps",1286,37,6,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1286,37,6,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1287,37,7,13])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"type"},{"$":"constant","value":"text/javascript"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1339,38,7,7]),types.vector(["jsworld/google-maps",1347,38,15,32]),types.vector(["jsworld/google-maps",1380,38,48,3]),types.vector(["jsworld/google-maps",1384,38,52,4]),types.vector(["jsworld/google-maps",1338,38,6,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1338,38,6,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1339,38,7,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1348,38,16,12]),types.vector(["jsworld/google-maps",1361,38,29,3]),types.vector(["jsworld/google-maps",1365,38,33,13]),types.vector(["jsworld/google-maps",1347,38,15,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1347,38,15,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1348,38,16,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"appendChild"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1397,39,7,4]),types.vector(["jsworld/google-maps",1396,39,6,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1396,39,6,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1397,39,7,4])},"rands":[]}}}]}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1416,41,9,14])}],"body":{"$":"lam","name":types.symbol("loadGoogleMaps"),"locs":[types.vector(["jsworld/google-maps",1416,41,9,14]),types.vector(["jsworld/google-maps",1431,41,24,3]),types.vector(["jsworld/google-maps",1435,41,28,3]),types.vector(["jsworld/google-maps",1439,41,32,4]),types.vector(["jsworld/google-maps",1444,41,37,3])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1464,43,5,10]),types.vector(["jsworld/google-maps",1475,43,16,120]),types.vector(["jsworld/google-maps",1463,43,4,133])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1463,43,4,133])},"body":{"$":"application","rator":{"$":"toplevel","depth":1,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1464,43,5,10])},"rands":[{"$":"constant","value":"http://www.google.com/jsapi?key=ABQIAAAANuLQS-qn8FP_vP2FRBltExQIToEyJbLNev2L3JVYkG889ZSczxQlHFTiT5TMwWkBl4392LfkmDmJ4A"}]}}},{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"lam","name":types.symbol("phase2"),"locs":[types.vector(["jsworld/google-maps",1617,44,20,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[1,0,2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1688,45,53,19]),types.vector(["jsworld/google-maps",1708,45,73,8]),types.vector(["jsworld/google-maps",1687,45,52,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1687,45,52,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1688,45,53,19])},"rands":[{"$":"constant","value":"google"}]}}},"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28]),types.vector(["jsworld/google-maps",1755,46,35,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1755,46,35,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1755,46,35,28])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",1752,46,32,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1756,46,36,6]),types.vector(["jsworld/google-maps",1763,46,43,6]),types.vector(["jsworld/google-maps",1770,46,50,12]),types.vector(["jsworld/google-maps",1755,46,35,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1755,46,35,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1756,46,36,6])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1770,46,50,12])}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",1755,46,35,28])}]}}},"then":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1864,48,38,7]),types.vector(["jsworld/google-maps",1872,48,46,34]),types.vector(["jsworld/google-maps",1954,49,46,5]),types.vector(["jsworld/google-maps",2007,50,46,31]),types.vector(["jsworld/google-maps",2086,51,46,21]),types.vector(["jsworld/google-maps",1863,48,37,245])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1863,48,37,245])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1864,48,38,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",1873,48,47,19]),types.vector(["jsworld/google-maps",1893,48,67,12]),types.vector(["jsworld/google-maps",1872,48,46,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",1872,48,46,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1873,48,47,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",1954,49,46,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2008,50,47,22]),types.vector(["jsworld/google-maps",2031,50,70,6]),types.vector(["jsworld/google-maps",2007,50,46,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2007,50,46,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2008,50,47,22])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2087,51,47,15]),types.vector(["jsworld/google-maps",2103,51,63,3]),types.vector(["jsworld/google-maps",2086,51,46,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2086,51,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2087,51,47,15])},"rands":[{"$":"constant","value":500}]}}}]}}}]},"else":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2167,52,57,12]),types.vector(["jsworld/google-maps",2180,52,70,6]),types.vector(["jsworld/google-maps",2187,52,77,6]),types.vector(["jsworld/google-maps",2166,52,56,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2166,52,56,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2167,52,57,12])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"load"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2257,53,61,12]),types.vector(["jsworld/google-maps",2256,53,60,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2256,53,60,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":122,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2257,53,61,12])},"rands":[]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2358,55,40,13]),types.vector(["jsworld/google-maps",2372,55,54,8]),types.vector(["jsworld/google-maps",2381,55,63,10]),types.vector(["jsworld/google-maps",2392,55,74,1588]),types.vector(["jsworld/google-maps",2357,55,39,1624])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2357,55,39,1624])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2358,55,40,13])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"callback"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2393,55,75,22]),types.vector(["jsworld/google-maps",2492,56,75,1487]),types.vector(["jsworld/google-maps",2392,55,74,1588])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2392,55,74,1588])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2393,55,75,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",2493,56,76,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[7,6,9,10,11,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2602,57,99,12]),types.vector(["jsworld/google-maps",2615,57,112,6]),types.vector(["jsworld/google-maps",2622,57,119,6]),types.vector(["jsworld/google-maps",2601,57,98,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2601,57,98,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2602,57,99,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"maps"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2731,58,100,6]),types.vector(["jsworld/google-maps",2738,58,107,26]),types.vector(["jsworld/google-maps",2765,58,134,3]),types.vector(["jsworld/google-maps",2730,58,99,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2730,58,99,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2731,58,100,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2739,58,108,12]),types.vector(["jsworld/google-maps",2752,58,121,4]),types.vector(["jsworld/google-maps",2757,58,126,6]),types.vector(["jsworld/google-maps",2738,58,107,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2738,58,107,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2739,58,108,12])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"Map2"}]}}},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2941,60,82,7]),types.vector(["jsworld/google-maps",2949,60,90,32]),types.vector(["jsworld/google-maps",3072,61,90,5]),types.vector(["jsworld/google-maps",3168,62,90,279]),types.vector(["jsworld/google-maps",3538,65,90,22]),types.vector(["jsworld/google-maps",2940,60,81,621])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2940,60,81,621])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2941,60,82,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",2950,60,91,12]),types.vector(["jsworld/google-maps",2963,60,104,5]),types.vector(["jsworld/google-maps",2969,60,110,11]),types.vector(["jsworld/google-maps",2949,60,90,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",2949,60,90,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",2950,60,91,12])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"setCenter"}]}}},{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3169,62,91,6]),types.vector(["jsworld/google-maps",3176,62,98,28]),types.vector(["jsworld/google-maps",3304,63,98,21]),types.vector(["jsworld/google-maps",3425,64,98,21]),types.vector(["jsworld/google-maps",3168,62,90,279])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3168,62,90,279])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3169,62,91,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3177,62,99,12]),types.vector(["jsworld/google-maps",3190,62,112,4]),types.vector(["jsworld/google-maps",3195,62,117,8]),types.vector(["jsworld/google-maps",3176,62,98,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3176,62,98,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3177,62,99,12])},"rands":[{"$":"localref","unbox?":true,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"LatLng"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3305,63,99,15]),types.vector(["jsworld/google-maps",3321,63,115,3]),types.vector(["jsworld/google-maps",3304,63,98,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3304,63,98,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3305,63,99,15])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3426,64,99,15]),types.vector(["jsworld/google-maps",3442,64,115,3]),types.vector(["jsworld/google-maps",3425,64,98,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3425,64,98,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3426,64,99,15])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3539,65,91,15]),types.vector(["jsworld/google-maps",3555,65,107,4]),types.vector(["jsworld/google-maps",3538,65,90,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3538,65,90,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3539,65,91,15])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3644,66,82,7]),types.vector(["jsworld/google-maps",3652,66,90,37]),types.vector(["jsworld/google-maps",3690,66,128,5]),types.vector(["jsworld/google-maps",3643,66,81,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3643,66,81,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3644,66,82,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3653,66,91,12]),types.vector(["jsworld/google-maps",3666,66,104,5]),types.vector(["jsworld/google-maps",3672,66,110,16]),types.vector(["jsworld/google-maps",3652,66,90,37])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3652,66,90,37])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3653,66,91,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"setUIToDefault"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3779,67,82,7]),types.vector(["jsworld/google-maps",3787,67,90,45]),types.vector(["jsworld/google-maps",3833,67,136,5]),types.vector(["jsworld/google-maps",3778,67,81,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3778,67,81,61])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3779,67,82,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3788,67,91,12]),types.vector(["jsworld/google-maps",3801,67,104,5]),types.vector(["jsworld/google-maps",3807,67,110,24]),types.vector(["jsworld/google-maps",3787,67,90,45])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3787,67,90,45])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3788,67,91,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"disableDoubleClickZoom"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",3945,68,82,13]),types.vector(["jsworld/google-maps",3959,68,96,3]),types.vector(["jsworld/google-maps",3963,68,100,6]),types.vector(["jsworld/google-maps",3970,68,107,5]),types.vector(["jsworld/google-maps",3944,68,81,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",3944,68,81,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",3945,68,82,13])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4022,69,40,7]),types.vector(["jsworld/google-maps",4030,69,48,4]),types.vector(["jsworld/google-maps",4035,69,53,6]),types.vector(["jsworld/google-maps",4042,69,60,24]),types.vector(["jsworld/google-maps",4067,69,85,23]),types.vector(["jsworld/google-maps",4091,69,109,8]),types.vector(["jsworld/google-maps",4021,69,39,79])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4021,69,39,79])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4022,69,40,7])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4043,69,61,15]),types.vector(["jsworld/google-maps",4059,69,77,6]),types.vector(["jsworld/google-maps",4042,69,60,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4042,69,60,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4043,69,61,15])},"rands":[{"$":"constant","value":"maps"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4068,69,86,15]),types.vector(["jsworld/google-maps",4084,69,102,5]),types.vector(["jsworld/google-maps",4067,69,85,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4067,69,85,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4068,69,86,15])},"rands":[{"$":"constant","value":"2.x"}]}}},{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4129,72,7,6]),types.vector(["jsworld/google-maps",4128,72,6,8])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4128,72,6,8])},"body":{"$":"application","rator":{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false},"rands":[]}}}}}]}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4150,74,9,7])}],"body":{"$":"lam","name":types.symbol("GLatLng"),"locs":[types.vector(["jsworld/google-maps",4150,74,9,7]),types.vector(["jsworld/google-maps",4158,74,17,3]),types.vector(["jsworld/google-maps",4162,74,21,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4170,75,3,6]),types.vector(["jsworld/google-maps",4177,75,10,31]),types.vector(["jsworld/google-maps",4209,75,42,21]),types.vector(["jsworld/google-maps",4231,75,64,21]),types.vector(["jsworld/google-maps",4169,75,2,84])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4169,75,2,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4170,75,3,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4178,75,11,19]),types.vector(["jsworld/google-maps",4198,75,31,9]),types.vector(["jsworld/google-maps",4177,75,10,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4177,75,10,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4178,75,11,19])},"rands":[{"$":"constant","value":"GLatLng"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4210,75,43,15]),types.vector(["jsworld/google-maps",4226,75,59,3]),types.vector(["jsworld/google-maps",4209,75,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4209,75,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4210,75,43,15])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4232,75,65,15]),types.vector(["jsworld/google-maps",4248,75,81,3]),types.vector(["jsworld/google-maps",4231,75,64,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4231,75,64,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4232,75,65,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":55,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4784,86,9,10])}],"body":{"$":"lam","name":types.symbol("google-map"),"locs":[types.vector(["jsworld/google-maps",4784,86,9,10]),types.vector(["jsworld/google-maps",4795,86,20,3]),types.vector(["jsworld/google-maps",4799,86,24,3]),types.vector(["jsworld/google-maps",4803,86,28,4]),types.vector(["jsworld/google-maps",4808,86,33,7])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4840,87,23,6]),types.vector(["jsworld/google-maps",4847,87,30,7]),types.vector(["jsworld/google-maps",4839,87,22,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4839,87,22,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":126,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4840,87,23,6])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4876,89,7,13]),types.vector(["jsworld/google-maps",4890,89,21,3]),types.vector(["jsworld/google-maps",4894,89,25,15]),types.vector(["jsworld/google-maps",4910,89,41,22]),types.vector(["jsworld/google-maps",4875,89,6,58])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4875,89,6,58])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4876,89,7,13])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"jsworldOpaque"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4911,89,42,15]),types.vector(["jsworld/google-maps",4927,89,58,4]),types.vector(["jsworld/google-maps",4910,89,41,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4910,89,41,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4911,89,42,15])},"rands":[{"$":"toplevel","depth":5,"pos":92,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4927,89,58,4])}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",4941,90,7,14]),types.vector(["jsworld/google-maps",4956,90,22,3]),types.vector(["jsworld/google-maps",4960,90,26,3]),types.vector(["jsworld/google-maps",4964,90,30,4]),types.vector(["jsworld/google-maps",4969,90,35,3]),types.vector(["jsworld/google-maps",4940,90,6,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",4940,90,6,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":52,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",4941,90,7,14])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":true,"pos":0,"clear":false,"other-clears?":false,"flonum?":false}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":39,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5683,105,9,12])}],"body":{"$":"lam","name":types.symbol("on-map-drag!"),"locs":[types.vector(["jsworld/google-maps",5683,105,9,12]),types.vector(["jsworld/google-maps",5696,105,22,7]),types.vector(["jsworld/google-maps",5704,105,30,13]),types.vector(["jsworld/google-maps",5718,105,44,14])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5757,106,23,12]),types.vector(["jsworld/google-maps",5770,106,36,7]),types.vector(["jsworld/google-maps",5778,106,44,6]),types.vector(["jsworld/google-maps",5756,106,22,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5756,106,22,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5757,106,23,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5793,107,5,17]),types.vector(["jsworld/google-maps",5816,108,5,562]),types.vector(["jsworld/google-maps",6419,119,5,20]),types.vector(["jsworld/google-maps",6445,120,5,530]),types.vector(["jsworld/google-maps",5792,107,4,1184])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5792,107,4,1184])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5793,107,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",5817,108,6,6]),types.vector(["jsworld/google-maps",5825,108,14,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5842,109,8,7]),types.vector(["jsworld/google-maps",5850,109,16,34]),types.vector(["jsworld/google-maps",5901,110,16,5]),types.vector(["jsworld/google-maps",5923,111,16,414]),types.vector(["jsworld/google-maps",6354,118,16,22]),types.vector(["jsworld/google-maps",5841,109,7,536])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5841,109,7,536])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5842,109,8,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5851,109,17,19]),types.vector(["jsworld/google-maps",5871,109,37,12]),types.vector(["jsworld/google-maps",5850,109,16,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5850,109,16,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5851,109,17,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":4,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5901,110,16,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",5924,111,17,22]),types.vector(["jsworld/google-maps",5947,111,40,389]),types.vector(["jsworld/google-maps",5923,111,16,414])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",5923,111,16,414])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",5924,111,17,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",5948,111,41,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6001,112,43,7]),types.vector(["jsworld/google-maps",6052,113,43,59]),types.vector(["jsworld/google-maps",6155,114,43,5]),types.vector(["jsworld/google-maps",6204,115,43,29]),types.vector(["jsworld/google-maps",6277,116,43,6]),types.vector(["jsworld/google-maps",6327,117,43,7]),types.vector(["jsworld/google-maps",6000,112,42,335])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6000,112,42,335])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6001,112,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6053,113,44,12]),types.vector(["jsworld/google-maps",6066,113,57,30]),types.vector(["jsworld/google-maps",6097,113,88,13]),types.vector(["jsworld/google-maps",6052,113,43,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6052,113,43,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6053,113,44,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6067,113,58,19]),types.vector(["jsworld/google-maps",6087,113,78,8]),types.vector(["jsworld/google-maps",6066,113,57,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6066,113,57,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6067,113,58,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6155,114,43,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6205,115,44,12]),types.vector(["jsworld/google-maps",6218,115,57,7]),types.vector(["jsworld/google-maps",6226,115,65,6]),types.vector(["jsworld/google-maps",6204,115,43,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6204,115,43,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6205,115,44,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"constant","value":"drag"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6355,118,17,15]),types.vector(["jsworld/google-maps",6371,118,33,4]),types.vector(["jsworld/google-maps",6354,118,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6354,118,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6355,118,17,15])},"rands":[{"$":"constant","value":4000}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",6420,119,6,6]),types.vector(["jsworld/google-maps",6428,119,14,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6433,119,19,4]),types.vector(["jsworld/google-maps",6432,119,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6432,119,18,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6433,119,19,4])},"rands":[]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",6446,120,6,6]),types.vector(["jsworld/google-maps",6454,120,14,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":5,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6487,121,30,12]),types.vector(["jsworld/google-maps",6500,121,43,7]),types.vector(["jsworld/google-maps",6508,121,51,6]),types.vector(["jsworld/google-maps",6486,121,29,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6486,121,29,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6487,121,30,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6552,122,35,12]),types.vector(["jsworld/google-maps",6565,122,48,5]),types.vector(["jsworld/google-maps",6571,122,54,11]),types.vector(["jsworld/google-maps",6551,122,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6551,122,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6552,122,35,12])},"rands":[{"$":"localref","unbox?":true,"pos":2,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"getCenter"}]}}},"body":{"$":"install-value","count":1,"pos":2,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6616,123,31,7]),types.vector(["jsworld/google-maps",6624,123,39,10]),types.vector(["jsworld/google-maps",6635,123,50,5]),types.vector(["jsworld/google-maps",6615,123,30,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6615,123,30,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6616,123,31,7])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"install-value","count":1,"pos":3,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6671,124,28,7]),types.vector(["jsworld/google-maps",6679,124,36,27]),types.vector(["jsworld/google-maps",6707,124,64,6]),types.vector(["jsworld/google-maps",6670,124,27,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6670,124,27,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6671,124,28,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6680,124,37,12]),types.vector(["jsworld/google-maps",6693,124,50,6]),types.vector(["jsworld/google-maps",6700,124,57,5]),types.vector(["jsworld/google-maps",6679,124,36,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6679,124,36,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6680,124,37,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"lat"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"install-value","count":1,"pos":4,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6744,125,28,7]),types.vector(["jsworld/google-maps",6752,125,36,27]),types.vector(["jsworld/google-maps",6780,125,64,6]),types.vector(["jsworld/google-maps",6743,125,27,44])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6743,125,27,44])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6744,125,28,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6753,125,37,12]),types.vector(["jsworld/google-maps",6766,125,50,6]),types.vector(["jsworld/google-maps",6773,125,57,5]),types.vector(["jsworld/google-maps",6752,125,36,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6752,125,36,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6753,125,37,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"lng"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6800,126,10,18]),types.vector(["jsworld/google-maps",6819,126,29,62]),types.vector(["jsworld/google-maps",6911,127,29,61]),types.vector(["jsworld/google-maps",6799,126,9,174])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6799,126,9,174])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6800,126,10,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6820,126,30,14]),types.vector(["jsworld/google-maps",6835,126,45,1]),types.vector(["jsworld/google-maps",6837,126,47,21]),types.vector(["jsworld/google-maps",6859,126,69,21]),types.vector(["jsworld/google-maps",6819,126,29,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6819,126,29,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6838,126,48,15]),types.vector(["jsworld/google-maps",6854,126,64,3]),types.vector(["jsworld/google-maps",6837,126,47,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6837,126,47,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6838,126,48,15])},"rands":[{"$":"localref","unbox?":true,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6860,126,70,15]),types.vector(["jsworld/google-maps",6876,126,86,3]),types.vector(["jsworld/google-maps",6859,126,69,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6859,126,69,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6860,126,70,15])},"rands":[{"$":"localref","unbox?":true,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6912,127,30,13]),types.vector(["jsworld/google-maps",6926,127,44,1]),types.vector(["jsworld/google-maps",6928,127,46,21]),types.vector(["jsworld/google-maps",6950,127,68,21]),types.vector(["jsworld/google-maps",6911,127,29,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6911,127,29,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":14,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6929,127,47,15]),types.vector(["jsworld/google-maps",6945,127,63,3]),types.vector(["jsworld/google-maps",6928,127,46,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6928,127,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6929,127,47,15])},"rands":[{"$":"localref","unbox?":true,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",6951,127,69,15]),types.vector(["jsworld/google-maps",6967,127,85,3]),types.vector(["jsworld/google-maps",6950,127,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",6950,127,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6951,127,69,15])},"rands":[{"$":"localref","unbox?":true,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":38,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",6989,129,9,13])}],"body":{"$":"lam","name":types.symbol("on-map-click!"),"locs":[types.vector(["jsworld/google-maps",6989,129,9,13]),types.vector(["jsworld/google-maps",7003,129,23,7]),types.vector(["jsworld/google-maps",7011,129,31,13]),types.vector(["jsworld/google-maps",7025,129,45,14])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7066,130,25,12]),types.vector(["jsworld/google-maps",7079,130,38,7]),types.vector(["jsworld/google-maps",7087,130,46,6]),types.vector(["jsworld/google-maps",7065,130,24,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7065,130,24,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7066,130,25,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7102,131,5,17]),types.vector(["jsworld/google-maps",7125,132,5,563]),types.vector(["jsworld/google-maps",7729,143,5,20]),types.vector(["jsworld/google-maps",7755,144,5,422]),types.vector(["jsworld/google-maps",7101,131,4,1077])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7101,131,4,1077])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7102,131,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",7126,132,6,6]),types.vector(["jsworld/google-maps",7134,132,14,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7151,133,8,7]),types.vector(["jsworld/google-maps",7159,133,16,34]),types.vector(["jsworld/google-maps",7210,134,16,5]),types.vector(["jsworld/google-maps",7232,135,16,415]),types.vector(["jsworld/google-maps",7664,142,16,22]),types.vector(["jsworld/google-maps",7150,133,7,537])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7150,133,7,537])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7151,133,8,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7160,133,17,19]),types.vector(["jsworld/google-maps",7180,133,37,12]),types.vector(["jsworld/google-maps",7159,133,16,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7159,133,16,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7160,133,17,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":4,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7210,134,16,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7233,135,17,22]),types.vector(["jsworld/google-maps",7256,135,40,390]),types.vector(["jsworld/google-maps",7232,135,16,415])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7232,135,16,415])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7233,135,17,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",7257,135,41,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7310,136,43,7]),types.vector(["jsworld/google-maps",7361,137,43,59]),types.vector(["jsworld/google-maps",7464,138,43,5]),types.vector(["jsworld/google-maps",7513,139,43,29]),types.vector(["jsworld/google-maps",7586,140,43,7]),types.vector(["jsworld/google-maps",7637,141,43,7]),types.vector(["jsworld/google-maps",7309,136,42,336])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7309,136,42,336])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7310,136,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7362,137,44,12]),types.vector(["jsworld/google-maps",7375,137,57,30]),types.vector(["jsworld/google-maps",7406,137,88,13]),types.vector(["jsworld/google-maps",7361,137,43,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7361,137,43,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7362,137,44,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7376,137,58,19]),types.vector(["jsworld/google-maps",7396,137,78,8]),types.vector(["jsworld/google-maps",7375,137,57,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7375,137,57,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7376,137,58,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7464,138,43,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7514,139,44,12]),types.vector(["jsworld/google-maps",7527,139,57,7]),types.vector(["jsworld/google-maps",7535,139,65,6]),types.vector(["jsworld/google-maps",7513,139,43,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7513,139,43,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7514,139,44,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"constant","value":"click"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7665,142,17,15]),types.vector(["jsworld/google-maps",7681,142,33,4]),types.vector(["jsworld/google-maps",7664,142,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7664,142,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7665,142,17,15])},"rands":[{"$":"constant","value":4000}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",7730,143,6,6]),types.vector(["jsworld/google-maps",7738,143,14,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7743,143,19,4]),types.vector(["jsworld/google-maps",7742,143,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7742,143,18,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7743,143,19,4])},"rands":[]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",7756,144,6,6]),types.vector(["jsworld/google-maps",7764,144,14,1]),types.vector(["jsworld/google-maps",7766,144,16,7]),types.vector(["jsworld/google-maps",7774,144,24,7])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7909,145,28,12]),types.vector(["jsworld/google-maps",7922,145,41,7]),types.vector(["jsworld/google-maps",7930,145,49,3]),types.vector(["jsworld/google-maps",7908,145,27,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7908,145,27,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7909,145,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"x"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",7964,146,28,12]),types.vector(["jsworld/google-maps",7977,146,41,7]),types.vector(["jsworld/google-maps",7985,146,49,3]),types.vector(["jsworld/google-maps",7963,146,27,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",7963,146,27,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",7964,146,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"y"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8002,147,10,18]),types.vector(["jsworld/google-maps",8021,147,29,62]),types.vector(["jsworld/google-maps",8113,148,29,61]),types.vector(["jsworld/google-maps",8001,147,9,174])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8001,147,9,174])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8002,147,10,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8022,147,30,14]),types.vector(["jsworld/google-maps",8037,147,45,1]),types.vector(["jsworld/google-maps",8039,147,47,21]),types.vector(["jsworld/google-maps",8061,147,69,21]),types.vector(["jsworld/google-maps",8021,147,29,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8021,147,29,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8040,147,48,15]),types.vector(["jsworld/google-maps",8056,147,64,3]),types.vector(["jsworld/google-maps",8039,147,47,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8039,147,47,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8040,147,48,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8062,147,70,15]),types.vector(["jsworld/google-maps",8078,147,86,3]),types.vector(["jsworld/google-maps",8061,147,69,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8061,147,69,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8062,147,70,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8114,148,30,13]),types.vector(["jsworld/google-maps",8128,148,44,1]),types.vector(["jsworld/google-maps",8130,148,46,21]),types.vector(["jsworld/google-maps",8152,148,68,21]),types.vector(["jsworld/google-maps",8113,148,29,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8113,148,29,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8131,148,47,15]),types.vector(["jsworld/google-maps",8147,148,63,3]),types.vector(["jsworld/google-maps",8130,148,46,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8130,148,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8131,148,47,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8153,148,69,15]),types.vector(["jsworld/google-maps",8169,148,85,3]),types.vector(["jsworld/google-maps",8152,148,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8152,148,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8153,148,69,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":41,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8191,150,9,16])}],"body":{"$":"lam","name":types.symbol("on-map-dblclick!"),"locs":[types.vector(["jsworld/google-maps",8191,150,9,16]),types.vector(["jsworld/google-maps",8208,150,26,7]),types.vector(["jsworld/google-maps",8216,150,34,13]),types.vector(["jsworld/google-maps",8230,150,48,14])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8271,151,25,12]),types.vector(["jsworld/google-maps",8284,151,38,7]),types.vector(["jsworld/google-maps",8292,151,46,6]),types.vector(["jsworld/google-maps",8270,151,24,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8270,151,24,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8271,151,25,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8307,152,5,17]),types.vector(["jsworld/google-maps",8330,153,5,566]),types.vector(["jsworld/google-maps",8937,164,5,20]),types.vector(["jsworld/google-maps",8963,165,5,422]),types.vector(["jsworld/google-maps",8306,152,4,1080])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8306,152,4,1080])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8307,152,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",8331,153,6,6]),types.vector(["jsworld/google-maps",8339,153,14,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8356,154,8,7]),types.vector(["jsworld/google-maps",8364,154,16,34]),types.vector(["jsworld/google-maps",8415,155,16,5]),types.vector(["jsworld/google-maps",8437,156,16,418]),types.vector(["jsworld/google-maps",8872,163,16,22]),types.vector(["jsworld/google-maps",8355,154,7,540])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8355,154,7,540])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8356,154,8,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8365,154,17,19]),types.vector(["jsworld/google-maps",8385,154,37,12]),types.vector(["jsworld/google-maps",8364,154,16,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8364,154,16,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8365,154,17,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":4,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8415,155,16,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8438,156,17,22]),types.vector(["jsworld/google-maps",8461,156,40,393]),types.vector(["jsworld/google-maps",8437,156,16,418])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8437,156,16,418])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8438,156,17,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",8462,156,41,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8515,157,43,7]),types.vector(["jsworld/google-maps",8566,158,43,59]),types.vector(["jsworld/google-maps",8669,159,43,5]),types.vector(["jsworld/google-maps",8718,160,43,29]),types.vector(["jsworld/google-maps",8791,161,43,10]),types.vector(["jsworld/google-maps",8845,162,43,7]),types.vector(["jsworld/google-maps",8514,157,42,339])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8514,157,42,339])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8515,157,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8567,158,44,12]),types.vector(["jsworld/google-maps",8580,158,57,30]),types.vector(["jsworld/google-maps",8611,158,88,13]),types.vector(["jsworld/google-maps",8566,158,43,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8566,158,43,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8567,158,44,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8581,158,58,19]),types.vector(["jsworld/google-maps",8601,158,78,8]),types.vector(["jsworld/google-maps",8580,158,57,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8580,158,57,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8581,158,58,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8669,159,43,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8719,160,44,12]),types.vector(["jsworld/google-maps",8732,160,57,7]),types.vector(["jsworld/google-maps",8740,160,65,6]),types.vector(["jsworld/google-maps",8718,160,43,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8718,160,43,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8719,160,44,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"constant","value":"dblclick"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8873,163,17,15]),types.vector(["jsworld/google-maps",8889,163,33,4]),types.vector(["jsworld/google-maps",8872,163,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8872,163,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8873,163,17,15])},"rands":[{"$":"constant","value":4000}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",8938,164,6,6]),types.vector(["jsworld/google-maps",8946,164,14,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",8951,164,19,4]),types.vector(["jsworld/google-maps",8950,164,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",8950,164,18,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",8951,164,19,4])},"rands":[]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",8964,165,6,6]),types.vector(["jsworld/google-maps",8972,165,14,1]),types.vector(["jsworld/google-maps",8974,165,16,7]),types.vector(["jsworld/google-maps",8982,165,24,7])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9117,166,28,12]),types.vector(["jsworld/google-maps",9130,166,41,7]),types.vector(["jsworld/google-maps",9138,166,49,3]),types.vector(["jsworld/google-maps",9116,166,27,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9116,166,27,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9117,166,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"x"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9172,167,28,12]),types.vector(["jsworld/google-maps",9185,167,41,7]),types.vector(["jsworld/google-maps",9193,167,49,3]),types.vector(["jsworld/google-maps",9171,167,27,26])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9171,167,27,26])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9172,167,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"y"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9210,168,10,18]),types.vector(["jsworld/google-maps",9229,168,29,62]),types.vector(["jsworld/google-maps",9321,169,29,61]),types.vector(["jsworld/google-maps",9209,168,9,174])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9209,168,9,174])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9210,168,10,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9230,168,30,14]),types.vector(["jsworld/google-maps",9245,168,45,1]),types.vector(["jsworld/google-maps",9247,168,47,21]),types.vector(["jsworld/google-maps",9269,168,69,21]),types.vector(["jsworld/google-maps",9229,168,29,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9229,168,29,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9248,168,48,15]),types.vector(["jsworld/google-maps",9264,168,64,3]),types.vector(["jsworld/google-maps",9247,168,47,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9247,168,47,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9248,168,48,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9270,168,70,15]),types.vector(["jsworld/google-maps",9286,168,86,3]),types.vector(["jsworld/google-maps",9269,168,69,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9269,168,69,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9270,168,70,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9322,169,30,13]),types.vector(["jsworld/google-maps",9336,169,44,1]),types.vector(["jsworld/google-maps",9338,169,46,21]),types.vector(["jsworld/google-maps",9360,169,68,21]),types.vector(["jsworld/google-maps",9321,169,29,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9321,169,29,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9339,169,47,15]),types.vector(["jsworld/google-maps",9355,169,63,3]),types.vector(["jsworld/google-maps",9338,169,46,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9338,169,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9339,169,47,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9361,169,69,15]),types.vector(["jsworld/google-maps",9377,169,85,3]),types.vector(["jsworld/google-maps",9360,169,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9360,169,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9361,169,69,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":40,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9399,171,9,18])}],"body":{"$":"lam","name":types.symbol("on-map-rightclick!"),"locs":[types.vector(["jsworld/google-maps",9399,171,9,18]),types.vector(["jsworld/google-maps",9418,171,28,7]),types.vector(["jsworld/google-maps",9426,171,36,13]),types.vector(["jsworld/google-maps",9440,171,50,14])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9552,172,25,12]),types.vector(["jsworld/google-maps",9565,172,38,7]),types.vector(["jsworld/google-maps",9573,172,46,6]),types.vector(["jsworld/google-maps",9551,172,24,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9551,172,24,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9552,172,25,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9588,173,5,17]),types.vector(["jsworld/google-maps",9611,174,5,574]),types.vector(["jsworld/google-maps",10226,185,5,20]),types.vector(["jsworld/google-maps",10252,186,5,311]),types.vector(["jsworld/google-maps",9587,173,4,977])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9587,173,4,977])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":112,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9588,173,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",9612,174,6,6]),types.vector(["jsworld/google-maps",9620,174,14,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9637,175,8,7]),types.vector(["jsworld/google-maps",9645,175,16,34]),types.vector(["jsworld/google-maps",9696,176,16,5]),types.vector(["jsworld/google-maps",9718,177,16,426]),types.vector(["jsworld/google-maps",10161,184,16,22]),types.vector(["jsworld/google-maps",9636,175,7,548])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9636,175,7,548])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9637,175,8,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9646,175,17,19]),types.vector(["jsworld/google-maps",9666,175,37,12]),types.vector(["jsworld/google-maps",9645,175,16,34])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9645,175,16,34])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9646,175,17,19])},"rands":[{"$":"constant","value":"setTimeout"}]}}},{"$":"toplevel","depth":4,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9696,176,16,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9719,177,17,22]),types.vector(["jsworld/google-maps",9742,177,40,401]),types.vector(["jsworld/google-maps",9718,177,16,426])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9718,177,16,426])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9719,177,17,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",9743,177,41,6])],"flags":[],"num-params":0,"param-types":[],"rest?":false,"closure-map":[5,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9796,178,43,7]),types.vector(["jsworld/google-maps",9847,179,43,59]),types.vector(["jsworld/google-maps",9950,180,43,5]),types.vector(["jsworld/google-maps",9999,181,43,29]),types.vector(["jsworld/google-maps",10072,182,43,18]),types.vector(["jsworld/google-maps",10134,183,43,7]),types.vector(["jsworld/google-maps",9795,178,42,347])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9795,178,42,347])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9796,178,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9848,179,44,12]),types.vector(["jsworld/google-maps",9861,179,57,30]),types.vector(["jsworld/google-maps",9892,179,88,13]),types.vector(["jsworld/google-maps",9847,179,43,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9847,179,43,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9848,179,44,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",9862,179,58,19]),types.vector(["jsworld/google-maps",9882,179,78,8]),types.vector(["jsworld/google-maps",9861,179,57,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9861,179,57,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9862,179,58,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",9950,180,43,5])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10000,181,44,12]),types.vector(["jsworld/google-maps",10013,181,57,7]),types.vector(["jsworld/google-maps",10021,181,65,6]),types.vector(["jsworld/google-maps",9999,181,43,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",9999,181,43,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10000,181,44,12])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"constant","value":"singlerightclick"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10162,184,17,15]),types.vector(["jsworld/google-maps",10178,184,33,4]),types.vector(["jsworld/google-maps",10161,184,16,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10161,184,16,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10162,184,17,15])},"rands":[{"$":"constant","value":4000}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",10227,185,6,6]),types.vector(["jsworld/google-maps",10235,185,14,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10240,185,19,4]),types.vector(["jsworld/google-maps",10239,185,18,6])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10239,185,18,6])},"body":{"$":"application","rator":{"$":"toplevel","depth":0,"pos":95,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10240,185,19,4])},"rands":[]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",10253,186,6,6]),types.vector(["jsworld/google-maps",10261,186,14,1]),types.vector(["jsworld/google-maps",10263,186,16,3]),types.vector(["jsworld/google-maps",10267,186,20,3]),types.vector(["jsworld/google-maps",10271,186,24,2])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10303,187,28,12]),types.vector(["jsworld/google-maps",10316,187,41,3]),types.vector(["jsworld/google-maps",10320,187,45,3]),types.vector(["jsworld/google-maps",10302,187,27,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10302,187,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10303,187,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"x"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10354,188,28,12]),types.vector(["jsworld/google-maps",10367,188,41,3]),types.vector(["jsworld/google-maps",10371,188,45,3]),types.vector(["jsworld/google-maps",10353,188,27,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10353,188,27,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10354,188,28,12])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"y"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10388,189,10,18]),types.vector(["jsworld/google-maps",10407,189,29,62]),types.vector(["jsworld/google-maps",10499,190,29,61]),types.vector(["jsworld/google-maps",10387,189,9,174])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10387,189,9,174])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":94,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10388,189,10,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10408,189,30,14]),types.vector(["jsworld/google-maps",10423,189,45,1]),types.vector(["jsworld/google-maps",10425,189,47,21]),types.vector(["jsworld/google-maps",10447,189,69,21]),types.vector(["jsworld/google-maps",10407,189,29,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10407,189,29,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10426,189,48,15]),types.vector(["jsworld/google-maps",10442,189,64,3]),types.vector(["jsworld/google-maps",10425,189,47,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10425,189,47,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10426,189,48,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10448,189,70,15]),types.vector(["jsworld/google-maps",10464,189,86,3]),types.vector(["jsworld/google-maps",10447,189,69,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10447,189,69,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10448,189,70,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10500,190,30,13]),types.vector(["jsworld/google-maps",10514,190,44,1]),types.vector(["jsworld/google-maps",10516,190,46,21]),types.vector(["jsworld/google-maps",10538,190,68,21]),types.vector(["jsworld/google-maps",10499,190,29,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10499,190,29,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10517,190,47,15]),types.vector(["jsworld/google-maps",10533,190,63,3]),types.vector(["jsworld/google-maps",10516,190,46,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10516,190,46,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10517,190,47,15])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",10539,190,69,15]),types.vector(["jsworld/google-maps",10555,190,85,3]),types.vector(["jsworld/google-maps",10538,190,68,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",10538,190,68,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",10539,190,69,15])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11188,198,16,10])},{"$":"toplevel","depth":0,"pos":36,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11199,198,27,15])},{"$":"toplevel","depth":0,"pos":66,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11215,198,43,11])},{"$":"toplevel","depth":0,"pos":88,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11227,198,55,19])},{"$":"toplevel","depth":0,"pos":84,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11247,198,75,18])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11270,199,3,16]),types.vector(["jsworld/google-maps",11287,199,20,11]),types.vector(["jsworld/google-maps",11320,200,20,2]),types.vector(["jsworld/google-maps",11344,201,20,1]),types.vector(["jsworld/google-maps",11367,202,20,70]),types.vector(["jsworld/google-maps",11458,203,20,3]),types.vector(["jsworld/google-maps",11482,204,20,276]),types.vector(["jsworld/google-maps",11269,199,2,490])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11269,199,2,490])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11270,199,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map")},{"$":"constant","value":false},{"$":"constant","value":1},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",11368,202,21,6]),types.vector(["jsworld/google-maps",11376,202,29,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11386,202,39,5]),types.vector(["jsworld/google-maps",11392,202,45,11]),types.vector(["jsworld/google-maps",11404,202,57,31]),types.vector(["jsworld/google-maps",11385,202,38,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11385,202,38,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11386,202,39,5])},"rands":[{"$":"constant","value":types.symbol("effect:map")},{"$":"constant","value":"has no default implementation"}]}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",11483,204,21,6]),types.vector(["jsworld/google-maps",11491,204,29,7]),types.vector(["jsworld/google-maps",11499,204,37,4])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84]),types.vector(["jsworld/google-maps",11531,205,26,84])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11531,205,26,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11531,205,26,84])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",11528,205,23,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11532,205,27,3]),types.vector(["jsworld/google-maps",11563,206,27,51]),types.vector(["jsworld/google-maps",11531,205,26,84])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11531,205,26,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":108,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11532,205,27,3])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11564,206,28,6]),types.vector(["jsworld/google-maps",11571,206,35,29]),types.vector(["jsworld/google-maps",11601,206,65,12]),types.vector(["jsworld/google-maps",11563,206,27,51])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11563,206,27,51])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":120,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11564,206,28,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11572,206,36,12]),types.vector(["jsworld/google-maps",11585,206,49,7]),types.vector(["jsworld/google-maps",11593,206,57,6]),types.vector(["jsworld/google-maps",11571,206,35,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11571,206,35,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11572,206,36,12])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},{"$":"toplevel","depth":7,"pos":119,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11601,206,65,12])}]}}}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",11531,205,26,84])}]}}},"then":{"$":"localref","unbox?":false,"pos":1,"clear":false,"other-clears?":false,"flonum?":false},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11677,208,27,5]),types.vector(["jsworld/google-maps",11683,208,33,4]),types.vector(["jsworld/google-maps",11688,208,38,59]),types.vector(["jsworld/google-maps",11748,208,98,7]),types.vector(["jsworld/google-maps",11676,208,26,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11676,208,26,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11677,208,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 1st argument, given: ~s"},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":71,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11778,210,16,15])},{"$":"toplevel","depth":0,"pos":45,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11794,210,32,20])},{"$":"toplevel","depth":0,"pos":57,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11815,210,53,16])},{"$":"toplevel","depth":0,"pos":69,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11832,210,70,24])},{"$":"toplevel","depth":0,"pos":70,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11857,210,95,23])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",11885,211,3,16]),types.vector(["jsworld/google-maps",11902,211,20,16]),types.vector(["jsworld/google-maps",11939,212,20,10]),types.vector(["jsworld/google-maps",11970,213,20,1]),types.vector(["jsworld/google-maps",11992,214,20,185]),types.vector(["jsworld/google-maps",12198,217,20,3]),types.vector(["jsworld/google-maps",12222,218,20,346]),types.vector(["jsworld/google-maps",11884,211,2,685])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",11884,211,2,685])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11885,211,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:zoom")},{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",11939,212,20,10])},{"$":"constant","value":1},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",11993,214,21,6]),types.vector(["jsworld/google-maps",12001,214,29,7]),types.vector(["jsworld/google-maps",12009,214,37,8])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12065,215,45,12]),types.vector(["jsworld/google-maps",12078,215,58,7]),types.vector(["jsworld/google-maps",12086,215,66,6]),types.vector(["jsworld/google-maps",12064,215,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12064,215,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12065,215,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12121,216,25,7]),types.vector(["jsworld/google-maps",12129,216,33,30]),types.vector(["jsworld/google-maps",12160,216,64,5]),types.vector(["jsworld/google-maps",12166,216,70,8]),types.vector(["jsworld/google-maps",12120,216,24,55])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12120,216,24,55])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12121,216,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12130,216,34,12]),types.vector(["jsworld/google-maps",12143,216,47,5]),types.vector(["jsworld/google-maps",12149,216,53,9]),types.vector(["jsworld/google-maps",12129,216,33,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12129,216,33,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12130,216,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"setZoom"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",12223,218,21,6]),types.vector(["jsworld/google-maps",12231,218,29,3]),types.vector(["jsworld/google-maps",12235,218,33,8]),types.vector(["jsworld/google-maps",12244,218,42,4])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126]),types.vector(["jsworld/google-maps",12276,219,26,126])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12276,219,26,126])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12276,219,26,126])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",12273,219,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17]),types.vector(["jsworld/google-maps",12281,219,31,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12281,219,31,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12281,219,31,17])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",12277,219,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12282,219,32,6]),types.vector(["jsworld/google-maps",12289,219,39,8]),types.vector(["jsworld/google-maps",12281,219,31,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12281,219,31,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":128,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12282,219,32,6])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",12281,219,31,17])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19]),types.vector(["jsworld/google-maps",12330,220,31,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12330,220,31,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12330,220,31,19])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",12277,219,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12331,220,32,8]),types.vector(["jsworld/google-maps",12340,220,41,8]),types.vector(["jsworld/google-maps",12330,220,31,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12330,220,31,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":127,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12331,220,32,8])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",12330,220,31,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20]),types.vector(["jsworld/google-maps",12381,221,31,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12381,221,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12381,221,31,20])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",12277,219,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12382,221,32,9]),types.vector(["jsworld/google-maps",12392,221,42,8]),types.vector(["jsworld/google-maps",12381,221,31,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12381,221,31,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":109,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12382,221,32,9])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",12381,221,31,20])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",12276,219,26,126])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12430,222,27,6]),types.vector(["jsworld/google-maps",12437,222,34,3]),types.vector(["jsworld/google-maps",12441,222,38,8]),types.vector(["jsworld/google-maps",12429,222,26,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12429,222,26,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12430,222,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12478,223,27,5]),types.vector(["jsworld/google-maps",12484,223,33,4]),types.vector(["jsworld/google-maps",12489,223,38,67]),types.vector(["jsworld/google-maps",12557,223,106,8]),types.vector(["jsworld/google-maps",12477,223,26,89])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12477,223,26,89])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12478,223,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 2nd argument, given: ~s"},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":83,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12588,225,16,19])},{"$":"toplevel","depth":0,"pos":46,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12608,225,36,24])},{"$":"toplevel","depth":0,"pos":67,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12633,225,61,20])},{"$":"toplevel","depth":0,"pos":81,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12654,225,82,28])},{"$":"toplevel","depth":0,"pos":82,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12683,225,111,27])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12715,226,3,16]),types.vector(["jsworld/google-maps",12732,226,20,20]),types.vector(["jsworld/google-maps",12773,227,20,10]),types.vector(["jsworld/google-maps",12804,228,20,1]),types.vector(["jsworld/google-maps",12826,229,20,195]),types.vector(["jsworld/google-maps",13042,232,20,3]),types.vector(["jsworld/google-maps",13066,233,20,308]),types.vector(["jsworld/google-maps",12714,226,2,661])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12714,226,2,661])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12715,226,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:location")},{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12773,227,20,10])},{"$":"constant","value":2},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",12827,229,21,6]),types.vector(["jsworld/google-maps",12835,229,29,7]),types.vector(["jsworld/google-maps",12843,229,37,3]),types.vector(["jsworld/google-maps",12847,229,41,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12898,230,45,12]),types.vector(["jsworld/google-maps",12911,230,58,7]),types.vector(["jsworld/google-maps",12919,230,66,6]),types.vector(["jsworld/google-maps",12897,230,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12897,230,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12898,230,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12954,231,25,7]),types.vector(["jsworld/google-maps",12962,231,33,32]),types.vector(["jsworld/google-maps",12995,231,66,5]),types.vector(["jsworld/google-maps",13001,231,72,17]),types.vector(["jsworld/google-maps",12953,231,24,66])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12953,231,24,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12954,231,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",12963,231,34,12]),types.vector(["jsworld/google-maps",12976,231,47,5]),types.vector(["jsworld/google-maps",12982,231,53,11]),types.vector(["jsworld/google-maps",12962,231,33,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",12962,231,33,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",12963,231,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"setCenter"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13002,231,73,7]),types.vector(["jsworld/google-maps",13010,231,81,3]),types.vector(["jsworld/google-maps",13014,231,85,3]),types.vector(["jsworld/google-maps",13001,231,72,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13001,231,72,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13002,231,73,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",13067,233,21,6]),types.vector(["jsworld/google-maps",13075,233,29,7]),types.vector(["jsworld/google-maps",13083,233,37,3]),types.vector(["jsworld/google-maps",13087,233,41,3]),types.vector(["jsworld/google-maps",13091,233,45,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88]),types.vector(["jsworld/google-maps",13123,234,26,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13123,234,26,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13123,234,26,88])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",13120,234,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13]),types.vector(["jsworld/google-maps",13156,235,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13156,235,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13156,235,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",13124,234,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13157,235,28,7]),types.vector(["jsworld/google-maps",13165,235,36,3]),types.vector(["jsworld/google-maps",13156,235,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13156,235,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13157,235,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",13156,235,27,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13]),types.vector(["jsworld/google-maps",13197,236,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13197,236,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13197,236,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",13124,234,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13198,236,28,7]),types.vector(["jsworld/google-maps",13206,236,36,3]),types.vector(["jsworld/google-maps",13197,236,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13197,236,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13198,236,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",13197,236,27,13])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",13123,234,26,88])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13239,237,27,6]),types.vector(["jsworld/google-maps",13246,237,34,7]),types.vector(["jsworld/google-maps",13254,237,42,3]),types.vector(["jsworld/google-maps",13258,237,46,3]),types.vector(["jsworld/google-maps",13238,237,26,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13238,237,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13239,237,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13290,238,27,5]),types.vector(["jsworld/google-maps",13296,238,33,4]),types.vector(["jsworld/google-maps",13301,238,38,62]),types.vector(["jsworld/google-maps",13364,238,101,3]),types.vector(["jsworld/google-maps",13368,238,105,3]),types.vector(["jsworld/google-maps",13289,238,26,83])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13289,238,26,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13290,238,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 2nd and 3rd argument, given: ~s ~s"},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":75,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13394,240,16,14])},{"$":"toplevel","depth":0,"pos":44,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13409,240,31,19])},{"$":"toplevel","depth":0,"pos":68,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13429,240,51,15])},{"$":"toplevel","depth":0,"pos":73,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13445,240,67,23])},{"$":"toplevel","depth":0,"pos":74,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13469,240,91,22])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13496,241,3,16]),types.vector(["jsworld/google-maps",13513,241,20,15]),types.vector(["jsworld/google-maps",13549,242,20,10]),types.vector(["jsworld/google-maps",13580,243,20,1]),types.vector(["jsworld/google-maps",13602,244,20,190]),types.vector(["jsworld/google-maps",13813,247,20,3]),types.vector(["jsworld/google-maps",13837,248,20,308]),types.vector(["jsworld/google-maps",13495,241,2,651])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13495,241,2,651])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13496,241,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:pan")},{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13549,242,20,10])},{"$":"constant","value":2},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",13603,244,21,6]),types.vector(["jsworld/google-maps",13611,244,29,7]),types.vector(["jsworld/google-maps",13619,244,37,3]),types.vector(["jsworld/google-maps",13623,244,41,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13673,245,45,12]),types.vector(["jsworld/google-maps",13686,245,58,7]),types.vector(["jsworld/google-maps",13694,245,66,6]),types.vector(["jsworld/google-maps",13672,245,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13672,245,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13673,245,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13729,246,25,7]),types.vector(["jsworld/google-maps",13737,246,33,28]),types.vector(["jsworld/google-maps",13766,246,62,5]),types.vector(["jsworld/google-maps",13772,246,68,17]),types.vector(["jsworld/google-maps",13728,246,24,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13728,246,24,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13729,246,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13738,246,34,12]),types.vector(["jsworld/google-maps",13751,246,47,5]),types.vector(["jsworld/google-maps",13757,246,53,7]),types.vector(["jsworld/google-maps",13737,246,33,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13737,246,33,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13738,246,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"panTo"}]}}},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13773,246,69,7]),types.vector(["jsworld/google-maps",13781,246,77,3]),types.vector(["jsworld/google-maps",13785,246,81,3]),types.vector(["jsworld/google-maps",13772,246,68,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13772,246,68,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13773,246,69,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",13838,248,21,6]),types.vector(["jsworld/google-maps",13846,248,29,7]),types.vector(["jsworld/google-maps",13854,248,37,3]),types.vector(["jsworld/google-maps",13858,248,41,3]),types.vector(["jsworld/google-maps",13862,248,45,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88]),types.vector(["jsworld/google-maps",13894,249,26,88])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13894,249,26,88])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13894,249,26,88])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",13891,249,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13]),types.vector(["jsworld/google-maps",13927,250,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13927,250,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13927,250,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",13895,249,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13928,250,28,7]),types.vector(["jsworld/google-maps",13936,250,36,3]),types.vector(["jsworld/google-maps",13927,250,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13927,250,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13928,250,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",13927,250,27,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13]),types.vector(["jsworld/google-maps",13968,251,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13968,251,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13968,251,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",13895,249,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",13969,251,28,7]),types.vector(["jsworld/google-maps",13977,251,36,3]),types.vector(["jsworld/google-maps",13968,251,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",13968,251,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",13969,251,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",13968,251,27,13])}]}}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",13894,249,26,88])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14010,252,27,6]),types.vector(["jsworld/google-maps",14017,252,34,7]),types.vector(["jsworld/google-maps",14025,252,42,3]),types.vector(["jsworld/google-maps",14029,252,46,3]),types.vector(["jsworld/google-maps",14009,252,26,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14009,252,26,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14010,252,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14061,253,27,5]),types.vector(["jsworld/google-maps",14067,253,33,4]),types.vector(["jsworld/google-maps",14072,253,38,62]),types.vector(["jsworld/google-maps",14135,253,101,3]),types.vector(["jsworld/google-maps",14139,253,105,3]),types.vector(["jsworld/google-maps",14060,253,26,83])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14060,253,26,83])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14061,253,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 2nd and 3rd argument, given: ~s ~s"},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":87,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14165,255,16,16])},{"$":"toplevel","depth":0,"pos":48,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14182,255,33,21])},{"$":"toplevel","depth":0,"pos":80,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14204,255,55,17])},{"$":"toplevel","depth":0,"pos":85,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14222,255,73,25])},{"$":"toplevel","depth":0,"pos":86,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14248,255,99,24])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14277,256,3,16]),types.vector(["jsworld/google-maps",14294,256,20,17]),types.vector(["jsworld/google-maps",14332,257,20,10]),types.vector(["jsworld/google-maps",14363,258,20,1]),types.vector(["jsworld/google-maps",14385,259,20,173]),types.vector(["jsworld/google-maps",14579,262,20,3]),types.vector(["jsworld/google-maps",14276,256,2,307])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14276,256,2,307])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14277,256,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:clear")},{"$":"toplevel","depth":5,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14332,257,20,10])},{"$":"constant","value":0},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",14386,259,21,6]),types.vector(["jsworld/google-maps",14394,259,29,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14448,260,45,12]),types.vector(["jsworld/google-maps",14461,260,58,7]),types.vector(["jsworld/google-maps",14469,260,66,6]),types.vector(["jsworld/google-maps",14447,260,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14447,260,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14448,260,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14504,261,25,7]),types.vector(["jsworld/google-maps",14512,261,33,36]),types.vector(["jsworld/google-maps",14549,261,70,5]),types.vector(["jsworld/google-maps",14503,261,24,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14503,261,24,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14504,261,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14513,261,34,12]),types.vector(["jsworld/google-maps",14526,261,47,5]),types.vector(["jsworld/google-maps",14532,261,53,15]),types.vector(["jsworld/google-maps",14512,261,33,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14512,261,33,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14513,261,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"clearOverlays"}]}}},{"$":"localref","unbox?":true,"pos":2,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"constant","value":types.EMPTY}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":64,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14602,264,16,22])},{"$":"toplevel","depth":0,"pos":37,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14625,264,39,27])},{"$":"toplevel","depth":0,"pos":63,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14653,264,67,23])},{"$":"toplevel","depth":0,"pos":65,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14677,264,91,31])},{"$":"toplevel","depth":0,"pos":58,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14709,264,123,30])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14744,265,3,16]),types.vector(["jsworld/google-maps",14761,265,20,23]),types.vector(["jsworld/google-maps",14805,266,20,2]),types.vector(["jsworld/google-maps",14828,267,20,1]),types.vector(["jsworld/google-maps",14850,268,20,235]),types.vector(["jsworld/google-maps",15107,271,20,4]),types.vector(["jsworld/google-maps",15132,272,20,102]),types.vector(["jsworld/google-maps",14743,265,2,492])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14743,265,2,492])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14744,265,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:reverse-geocode")},{"$":"constant","value":false},{"$":"constant","value":3},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",14851,268,21,6]),types.vector(["jsworld/google-maps",14859,268,29,3]),types.vector(["jsworld/google-maps",14863,268,33,3]),types.vector(["jsworld/google-maps",14867,268,37,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14925,269,48,6]),types.vector(["jsworld/google-maps",14932,269,55,39]),types.vector(["jsworld/google-maps",14924,269,47,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14924,269,47,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14925,269,48,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",14933,269,56,19]),types.vector(["jsworld/google-maps",14953,269,76,17]),types.vector(["jsworld/google-maps",14932,269,55,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14932,269,55,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",14933,269,56,19])},"rands":[{"$":"constant","value":"GClientGeocoder"}]}}}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15000,270,25,7]),types.vector(["jsworld/google-maps",15008,270,33,38]),types.vector(["jsworld/google-maps",15047,270,72,8]),types.vector(["jsworld/google-maps",15056,270,81,17]),types.vector(["jsworld/google-maps",15074,270,99,8]),types.vector(["jsworld/google-maps",14999,270,24,84])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",14999,270,24,84])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15000,270,25,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15009,270,34,12]),types.vector(["jsworld/google-maps",15022,270,47,8]),types.vector(["jsworld/google-maps",15031,270,56,14]),types.vector(["jsworld/google-maps",15008,270,33,38])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15008,270,33,38])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15009,270,34,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"getLocations"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15057,270,82,7]),types.vector(["jsworld/google-maps",15065,270,90,3]),types.vector(["jsworld/google-maps",15069,270,94,3]),types.vector(["jsworld/google-maps",15056,270,81,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15056,270,81,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15057,270,82,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}},{"$":"constant","value":types.list([2])},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",15133,272,21,6]),types.vector(["jsworld/google-maps",15141,272,29,3]),types.vector(["jsworld/google-maps",15145,272,33,3]),types.vector(["jsworld/google-maps",15149,272,37,8]),types.vector(["jsworld/google-maps",15158,272,46,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15209,273,23,6]),types.vector(["jsworld/google-maps",15216,273,30,3]),types.vector(["jsworld/google-maps",15220,273,34,3]),types.vector(["jsworld/google-maps",15224,273,38,8]),types.vector(["jsworld/google-maps",15208,273,22,25])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15208,273,22,25])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15209,273,23,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":78,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15309,277,16,17])},{"$":"toplevel","depth":0,"pos":47,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15327,277,34,22])},{"$":"toplevel","depth":0,"pos":72,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15350,277,57,18])},{"$":"toplevel","depth":0,"pos":76,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15369,277,76,26])},{"$":"toplevel","depth":0,"pos":77,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15396,277,103,25])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15426,278,3,16]),types.vector(["jsworld/google-maps",15443,278,20,18]),types.vector(["jsworld/google-maps",15482,279,20,10]),types.vector(["jsworld/google-maps",15513,280,20,1]),types.vector(["jsworld/google-maps",15535,281,20,1018]),types.vector(["jsworld/google-maps",16595,298,20,3]),types.vector(["jsworld/google-maps",16619,299,20,397]),types.vector(["jsworld/google-maps",15425,278,2,1592])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15425,278,2,1592])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15426,278,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:map:marker")},{"$":"toplevel","depth":6,"pos":79,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15482,279,20,10])},{"$":"constant","value":3},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",15536,281,21,6]),types.vector(["jsworld/google-maps",15544,281,29,7]),types.vector(["jsworld/google-maps",15552,281,37,3]),types.vector(["jsworld/google-maps",15556,281,41,3]),types.vector(["jsworld/google-maps",15560,281,45,11])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":2,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15618,282,45,12]),types.vector(["jsworld/google-maps",15631,282,58,7]),types.vector(["jsworld/google-maps",15639,282,66,6]),types.vector(["jsworld/google-maps",15617,282,44,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15617,282,44,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15618,282,45,12])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"gmap"}]}}},"body":{"$":"install-value","count":1,"pos":1,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15694,283,46,6]),types.vector(["jsworld/google-maps",15748,284,46,31]),types.vector(["jsworld/google-maps",15827,285,46,17]),types.vector(["jsworld/google-maps",15693,283,45,152])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15693,283,45,152])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":123,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15694,283,46,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15749,284,47,19]),types.vector(["jsworld/google-maps",15769,284,67,9]),types.vector(["jsworld/google-maps",15748,284,46,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15748,284,46,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15749,284,47,19])},"rands":[{"$":"constant","value":"GMarker"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15828,285,47,7]),types.vector(["jsworld/google-maps",15836,285,55,3]),types.vector(["jsworld/google-maps",15840,285,59,3]),types.vector(["jsworld/google-maps",15827,285,46,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15827,285,46,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":91,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15828,285,47,7])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15906,287,27,7]),types.vector(["jsworld/google-maps",15941,288,27,59]),types.vector(["jsworld/google-maps",16028,289,27,5]),types.vector(["jsworld/google-maps",16061,290,27,6]),types.vector(["jsworld/google-maps",16095,291,27,7]),types.vector(["jsworld/google-maps",16130,292,27,312]),types.vector(["jsworld/google-maps",15905,287,26,538])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15905,287,26,538])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15906,287,27,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15942,288,28,12]),types.vector(["jsworld/google-maps",15955,288,41,30]),types.vector(["jsworld/google-maps",15986,288,72,13]),types.vector(["jsworld/google-maps",15941,288,27,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15941,288,27,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15942,288,28,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",15956,288,42,19]),types.vector(["jsworld/google-maps",15976,288,62,8]),types.vector(["jsworld/google-maps",15955,288,41,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",15955,288,41,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",15956,288,42,19])},"rands":[{"$":"constant","value":"GEvent"}]}}},{"$":"constant","value":"addListener"}]}}},{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16028,289,27,5])},{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"click"},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16131,292,28,22]),types.vector(["jsworld/google-maps",16154,292,51,287]),types.vector(["jsworld/google-maps",16130,292,27,312])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16130,292,27,312])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":106,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16131,292,28,22])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",16155,292,52,6]),types.vector(["jsworld/google-maps",16163,292,60,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[8,7,12],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16226,293,54,7]),types.vector(["jsworld/google-maps",16234,293,62,42]),types.vector(["jsworld/google-maps",16340,294,62,6]),types.vector(["jsworld/google-maps",16410,295,62,29]),types.vector(["jsworld/google-maps",16225,293,53,215])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16225,293,53,215])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16226,293,54,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16235,293,63,12]),types.vector(["jsworld/google-maps",16248,293,76,6]),types.vector(["jsworld/google-maps",16255,293,83,20]),types.vector(["jsworld/google-maps",16234,293,62,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16234,293,62,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16235,293,63,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"openInfoWindowHtml"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16411,295,63,15]),types.vector(["jsworld/google-maps",16427,295,79,11]),types.vector(["jsworld/google-maps",16410,295,62,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16410,295,62,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16411,295,63,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16471,296,27,7]),types.vector(["jsworld/google-maps",16479,296,35,33]),types.vector(["jsworld/google-maps",16513,296,69,5]),types.vector(["jsworld/google-maps",16519,296,75,6]),types.vector(["jsworld/google-maps",16526,296,82,23]),types.vector(["jsworld/google-maps",16470,296,26,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16470,296,26,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16471,296,27,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16480,296,36,12]),types.vector(["jsworld/google-maps",16493,296,49,5]),types.vector(["jsworld/google-maps",16499,296,55,12]),types.vector(["jsworld/google-maps",16479,296,35,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16479,296,35,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":121,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16480,296,36,12])},"rands":[{"$":"localref","unbox?":true,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"addOverlay"}]}}},{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16527,296,83,15]),types.vector(["jsworld/google-maps",16543,296,99,5]),types.vector(["jsworld/google-maps",16526,296,82,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16526,296,82,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":103,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16527,296,83,15])},"rands":[{"$":"toplevel","depth":7,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16543,296,99,5])}]}}}]}}}]}}}}},{"$":"constant","value":types.EMPTY},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",16620,299,21,6]),types.vector(["jsworld/google-maps",16628,299,29,7]),types.vector(["jsworld/google-maps",16636,299,37,3]),types.vector(["jsworld/google-maps",16640,299,41,3]),types.vector(["jsworld/google-maps",16644,299,45,4]),types.vector(["jsworld/google-maps",16649,299,50,4])],"flags":[],"num-params":5,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130]),types.vector(["jsworld/google-maps",16681,300,26,130])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16681,300,26,130])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16681,300,26,130])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",16678,300,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13]),types.vector(["jsworld/google-maps",16714,301,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16714,301,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16714,301,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",16682,300,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16715,301,28,7]),types.vector(["jsworld/google-maps",16723,301,36,3]),types.vector(["jsworld/google-maps",16714,301,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16714,301,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16715,301,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",16714,301,27,13])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13]),types.vector(["jsworld/google-maps",16755,302,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16755,302,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16755,302,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",16682,300,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16756,302,28,7]),types.vector(["jsworld/google-maps",16764,302,36,3]),types.vector(["jsworld/google-maps",16755,302,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16755,302,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":110,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16756,302,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",16755,302,27,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14]),types.vector(["jsworld/google-maps",16796,303,27,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16796,303,27,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16796,303,27,14])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",16682,300,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16797,303,28,7]),types.vector(["jsworld/google-maps",16805,303,36,4]),types.vector(["jsworld/google-maps",16796,303,27,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16796,303,27,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16797,303,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":13,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",16796,303,27,14])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",16681,300,26,130])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16839,304,27,6]),types.vector(["jsworld/google-maps",16846,304,34,7]),types.vector(["jsworld/google-maps",16854,304,42,3]),types.vector(["jsworld/google-maps",16858,304,46,3]),types.vector(["jsworld/google-maps",16862,304,50,4]),types.vector(["jsworld/google-maps",16838,304,26,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16838,304,26,29])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16839,304,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",16895,305,27,5]),types.vector(["jsworld/google-maps",16901,305,33,4]),types.vector(["jsworld/google-maps",16906,305,38,94]),types.vector(["jsworld/google-maps",17001,305,133,3]),types.vector(["jsworld/google-maps",17005,305,137,3]),types.vector(["jsworld/google-maps",17009,305,141,4]),types.vector(["jsworld/google-maps",16894,305,26,120])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",16894,305,26,120])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",16895,305,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 2nd and 3rd argument and as 4th argument, given: ~s ~s ~s"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17029,307,9,14])}],"body":{"$":"lam","name":types.symbol("my-string-join"),"locs":[types.vector(["jsworld/google-maps",17029,307,9,14]),types.vector(["jsworld/google-maps",17044,307,24,4]),types.vector(["jsworld/google-maps",17049,307,29,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17090,309,13,5]),types.vector(["jsworld/google-maps",17096,309,19,65]),types.vector(["jsworld/google-maps",17181,311,19,2]),types.vector(["jsworld/google-maps",17203,312,19,4]),types.vector(["jsworld/google-maps",17089,309,12,119])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17089,309,12,119])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":129,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17090,309,13,5])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",17097,309,20,6]),types.vector(["jsworld/google-maps",17105,309,28,2]),types.vector(["jsworld/google-maps",17108,309,31,2])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17134,310,22,13]),types.vector(["jsworld/google-maps",17148,310,36,2]),types.vector(["jsworld/google-maps",17151,310,39,5]),types.vector(["jsworld/google-maps",17157,310,45,2]),types.vector(["jsworld/google-maps",17133,310,21,27])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17133,310,21,27])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17134,310,22,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"constant","value":""},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23]),types.vector(["jsworld/google-maps",17219,313,8,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17219,313,8,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17219,313,8,23])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",17216,313,5,2])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17220,313,9,1]),types.vector(["jsworld/google-maps",17222,313,11,17]),types.vector(["jsworld/google-maps",17240,313,29,1]),types.vector(["jsworld/google-maps",17219,313,8,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17219,313,8,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17220,313,9,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17223,313,12,13]),types.vector(["jsworld/google-maps",17237,313,26,1]),types.vector(["jsworld/google-maps",17222,313,11,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17222,313,11,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17223,313,12,13])},"rands":[{"$":"localref","unbox?":true,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":0}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",17219,313,8,23])}]}}},"then":{"$":"constant","value":""},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17263,315,9,9]),types.vector(["jsworld/google-maps",17273,315,19,1]),types.vector(["jsworld/google-maps",17275,315,21,1]),types.vector(["jsworld/google-maps",17277,315,23,24]),types.vector(["jsworld/google-maps",17262,315,8,40])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17262,315,8,40])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":99,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17263,315,9,9])},"rands":[{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":0},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17278,315,24,4]),types.vector(["jsworld/google-maps",17283,315,29,17]),types.vector(["jsworld/google-maps",17277,315,23,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17277,315,23,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":100,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17278,315,24,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17284,315,30,13]),types.vector(["jsworld/google-maps",17298,315,44,1]),types.vector(["jsworld/google-maps",17283,315,29,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17283,315,29,17])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":102,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17284,315,30,13])},"rands":[{"$":"localref","unbox?":true,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17316,317,9,6])}],"body":{"$":"lam","name":types.symbol("escape"),"locs":[types.vector(["jsworld/google-maps",17316,317,9,6]),types.vector(["jsworld/google-maps",17323,317,16,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17349,318,23,19]),types.vector(["jsworld/google-maps",17369,318,43,8]),types.vector(["jsworld/google-maps",17348,318,22,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17348,318,22,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17349,318,23,19])},"rands":[{"$":"constant","value":"escape"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17386,319,5,15]),types.vector(["jsworld/google-maps",17402,319,21,21]),types.vector(["jsworld/google-maps",17385,319,4,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17385,319,4,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":105,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17386,319,5,15])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17403,319,22,7]),types.vector(["jsworld/google-maps",17411,319,30,3]),types.vector(["jsworld/google-maps",17415,319,34,5]),types.vector(["jsworld/google-maps",17421,319,40,1]),types.vector(["jsworld/google-maps",17402,319,21,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17402,319,21,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":125,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17403,319,22,7])},"rands":[{"$":"localref","unbox?":true,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"toplevel","depth":5,"pos":130,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17415,319,34,5])},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17437,321,9,8])}],"body":{"$":"lam","name":types.symbol("form-url"),"locs":[types.vector(["jsworld/google-maps",17437,321,9,8]),types.vector(["jsworld/google-maps",17446,321,18,3]),types.vector(["jsworld/google-maps",17450,321,22,6])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17501,323,32,14]),types.vector(["jsworld/google-maps",17549,324,32,360]),types.vector(["jsworld/google-maps",17942,330,32,3]),types.vector(["jsworld/google-maps",17500,323,31,446])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17500,323,31,446])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17501,323,32,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17550,324,33,3]),types.vector(["jsworld/google-maps",17554,324,37,88]),types.vector(["jsworld/google-maps",17681,326,37,227]),types.vector(["jsworld/google-maps",17549,324,32,360])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17549,324,32,360])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17550,324,33,3])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",17555,324,38,6]),types.vector(["jsworld/google-maps",17563,324,46,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[5],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17607,325,40,14]),types.vector(["jsworld/google-maps",17622,325,55,14]),types.vector(["jsworld/google-maps",17637,325,70,3]),types.vector(["jsworld/google-maps",17606,325,39,35])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17606,325,39,35])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":42,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17607,325,40,14])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17623,325,56,3]),types.vector(["jsworld/google-maps",17627,325,60,6]),types.vector(["jsworld/google-maps",17634,325,67,1]),types.vector(["jsworld/google-maps",17622,325,55,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17622,325,55,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":113,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17623,325,56,3])},"rands":[{"$":"toplevel","depth":4,"pos":35,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17627,325,60,6])},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":"="}]}}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17682,326,38,6]),types.vector(["jsworld/google-maps",17689,326,45,6]),types.vector(["jsworld/google-maps",17742,327,45,165]),types.vector(["jsworld/google-maps",17681,326,37,227])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17681,326,37,227])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":133,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17682,326,38,6])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17743,327,46,4]),types.vector(["jsworld/google-maps",17794,328,46,22]),types.vector(["jsworld/google-maps",17864,329,46,42]),types.vector(["jsworld/google-maps",17742,327,45,165])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17742,327,45,165])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17743,327,46,4])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17795,328,47,4]),types.vector(["jsworld/google-maps",17800,328,52,8]),types.vector(["jsworld/google-maps",17809,328,61,6]),types.vector(["jsworld/google-maps",17794,328,46,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17794,328,46,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17795,328,47,4])},"rands":[{"$":"constant","value":"output"},{"$":"constant","value":"json"}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17865,329,47,4]),types.vector(["jsworld/google-maps",17870,329,52,10]),types.vector(["jsworld/google-maps",17881,329,63,24]),types.vector(["jsworld/google-maps",17864,329,46,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17864,329,46,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":11,"pos":117,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17865,329,47,4])},"rands":[{"$":"constant","value":"callback"},{"$":"constant","value":"script_effect_callback"}]}}}]}}}]}}}]}}},{"$":"constant","value":"&"}]}}},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",17954,331,5,13]),types.vector(["jsworld/google-maps",17968,331,19,3]),types.vector(["jsworld/google-maps",17972,331,23,3]),types.vector(["jsworld/google-maps",17976,331,27,12]),types.vector(["jsworld/google-maps",17953,331,4,36])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",17953,331,4,36])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":101,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",17954,331,5,13])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"?"},{"$":"localref","unbox?":true,"pos":3,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":59,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18009,333,16,13])},{"$":"toplevel","depth":0,"pos":43,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18023,333,30,18])},{"$":"toplevel","depth":0,"pos":61,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18042,333,49,14])},{"$":"toplevel","depth":0,"pos":62,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18057,333,64,22])},{"$":"toplevel","depth":0,"pos":60,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18080,333,87,21])}],"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18106,334,3,16]),types.vector(["jsworld/google-maps",18123,334,20,14]),types.vector(["jsworld/google-maps",18158,335,20,2]),types.vector(["jsworld/google-maps",18181,336,20,1]),types.vector(["jsworld/google-maps",18203,337,20,294]),types.vector(["jsworld/google-maps",18519,342,20,4]),types.vector(["jsworld/google-maps",18544,343,20,907]),types.vector(["jsworld/google-maps",18105,334,2,1347])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18105,334,2,1347])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":114,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18106,334,3,16])},"rands":[{"$":"constant","value":types.symbol("effect:script")},{"$":"constant","value":false},{"$":"constant","value":3},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",18204,337,21,6]),types.vector(["jsworld/google-maps",18212,337,29,3]),types.vector(["jsworld/google-maps",18216,337,33,6]),types.vector(["jsworld/google-maps",18223,337,40,8])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"let-void","count":1,"boxes?":true,"body":{"$":"install-value","count":1,"pos":0,"boxes?":true,"rhs":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18284,338,50,8]),types.vector(["jsworld/google-maps",18293,338,59,3]),types.vector(["jsworld/google-maps",18297,338,63,6]),types.vector(["jsworld/google-maps",18283,338,49,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18283,338,49,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":56,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18284,338,50,8])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}},"body":{"$":"seq","forms":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18365,340,27,13]),types.vector(["jsworld/google-maps",18379,340,41,30]),types.vector(["jsworld/google-maps",18410,340,72,24]),types.vector(["jsworld/google-maps",18435,340,97,8]),types.vector(["jsworld/google-maps",18364,340,26,80])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18364,340,26,80])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":111,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18365,340,27,13])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18380,340,42,19]),types.vector(["jsworld/google-maps",18400,340,62,8]),types.vector(["jsworld/google-maps",18379,340,41,30])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18379,340,41,30])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":124,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18380,340,42,19])},"rands":[{"$":"constant","value":"window"}]}}},{"$":"constant","value":"script_effect_callback"},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18472,341,27,10]),types.vector(["jsworld/google-maps",18483,341,38,10]),types.vector(["jsworld/google-maps",18471,341,26,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18471,341,26,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":51,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18472,341,27,10])},"rands":[{"$":"localref","unbox?":true,"pos":1,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"constant","value":types.list([2])},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",18545,343,21,6]),types.vector(["jsworld/google-maps",18553,343,29,3]),types.vector(["jsworld/google-maps",18557,343,33,6]),types.vector(["jsworld/google-maps",18564,343,40,8]),types.vector(["jsworld/google-maps",18573,343,49,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[6],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462]),types.vector(["jsworld/google-maps",18605,344,26,462])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18605,344,26,462])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18605,344,26,462])},"rands":[{"$":"constant","value":"if"},{"$":"constant","value":types.vector(["jsworld/google-maps",18602,344,23,2])},{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14]),types.vector(["jsworld/google-maps",18637,345,27,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18637,345,27,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18637,345,27,14])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18638,345,28,5]),types.vector(["jsworld/google-maps",18644,345,34,6]),types.vector(["jsworld/google-maps",18637,345,27,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18637,345,27,14])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18638,345,28,5])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18637,345,27,14])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21]),types.vector(["jsworld/google-maps",18679,346,27,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18679,346,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18679,346,27,21])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18680,346,28,6]),types.vector(["jsworld/google-maps",18687,346,35,5]),types.vector(["jsworld/google-maps",18693,346,41,6]),types.vector(["jsworld/google-maps",18679,346,27,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18679,346,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18680,346,28,6])},"rands":[{"$":"toplevel","depth":10,"pos":116,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18687,346,35,5])},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18679,346,27,21])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248]),types.vector(["jsworld/google-maps",18728,347,27,248])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18728,347,27,248])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18728,347,27,248])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18729,347,28,6]),types.vector(["jsworld/google-maps",18736,347,35,197]),types.vector(["jsworld/google-maps",18969,351,35,6]),types.vector(["jsworld/google-maps",18728,347,27,248])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18728,347,27,248])},"body":{"$":"application","rator":{"$":"toplevel","depth":10,"pos":134,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18729,347,28,6])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/google-maps",18737,347,36,6]),types.vector(["jsworld/google-maps",18745,347,44,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[10],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16]),types.vector(["jsworld/google-maps",18790,348,42,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18790,348,42,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18790,348,42,16])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18786,348,38,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18791,348,43,1]),types.vector(["jsworld/google-maps",18793,348,45,10]),types.vector(["jsworld/google-maps",18804,348,56,1]),types.vector(["jsworld/google-maps",18790,348,42,16])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18790,348,42,16])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":135,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18791,348,43,1])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18794,348,46,6]),types.vector(["jsworld/google-maps",18801,348,53,1]),types.vector(["jsworld/google-maps",18793,348,45,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18793,348,45,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":7,"pos":118,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18794,348,46,6])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":2}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18790,348,42,16])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19]),types.vector(["jsworld/google-maps",18849,349,42,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18849,349,42,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18849,349,42,19])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18786,348,38,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18850,349,43,7]),types.vector(["jsworld/google-maps",18858,349,51,9]),types.vector(["jsworld/google-maps",18849,349,42,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18849,349,42,19])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18850,349,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18859,349,52,5]),types.vector(["jsworld/google-maps",18865,349,58,1]),types.vector(["jsworld/google-maps",18858,349,51,9])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18858,349,51,9])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":131,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18859,349,52,5])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18849,349,42,19])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20]),types.vector(["jsworld/google-maps",18911,350,42,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18911,350,42,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18911,350,42,20])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18786,348,38,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18912,350,43,7]),types.vector(["jsworld/google-maps",18920,350,51,10]),types.vector(["jsworld/google-maps",18911,350,42,20])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18911,350,42,20])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18912,350,43,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",18921,350,52,6]),types.vector(["jsworld/google-maps",18928,350,59,1]),types.vector(["jsworld/google-maps",18920,350,51,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",18920,350,51,10])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":104,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",18921,350,52,6])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18911,350,42,20])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}}},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",18728,347,27,248])}]}}},"then":{"$":"branch","test":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13]),types.vector(["jsworld/google-maps",19004,352,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19004,352,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19004,352,27,13])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19005,352,28,7]),types.vector(["jsworld/google-maps",19013,352,36,3]),types.vector(["jsworld/google-maps",19004,352,27,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19004,352,27,13])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":98,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19005,352,28,7])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",19004,352,27,13])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21]),types.vector(["jsworld/google-maps",19045,353,27,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19045,353,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":8,"pos":96,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19045,353,27,21])},"rands":[{"$":"constant","value":"and"},{"$":"constant","value":types.vector(["jsworld/google-maps",18606,344,27,3])},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19046,353,28,10]),types.vector(["jsworld/google-maps",19057,353,39,8]),types.vector(["jsworld/google-maps",19045,353,27,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19045,353,27,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":9,"pos":107,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19046,353,28,10])},"rands":[{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"constant","value":types.vector(["jsworld/google-maps",19045,353,27,21])}]}}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},"else":{"$":"constant","value":false}},{"$":"constant","value":types.vector(["jsworld/google-maps",18605,344,26,462])}]}}},"then":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19095,354,27,6]),types.vector(["jsworld/google-maps",19102,354,34,3]),types.vector(["jsworld/google-maps",19106,354,38,6]),types.vector(["jsworld/google-maps",19113,354,45,8]),types.vector(["jsworld/google-maps",19094,354,26,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19094,354,26,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":97,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19095,354,27,6])},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},"else":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/google-maps",19150,355,27,5]),types.vector(["jsworld/google-maps",19156,355,33,4]),types.vector(["jsworld/google-maps",19195,356,33,134]),types.vector(["jsworld/google-maps",19363,357,33,3]),types.vector(["jsworld/google-maps",19400,358,33,6]),types.vector(["jsworld/google-maps",19440,359,33,8]),types.vector(["jsworld/google-maps",19149,355,26,300])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/google-maps",19149,355,26,300])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":132,"const?":false,"ready?":false,"loc":types.vector(["jsworld/google-maps",19150,355,27,5])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"expected type as 1st argument, as 2nd argument, and as 3rd argument: given ~s ~s ~s"},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}}}]}}}}]}}, 'provides': ["make-effect:map:zoom","on-map-dblclick!","on-map-drag!","on-map-rightclick!","make-effect:script","on-map-click!","make-effect:reverse-geocode","make-effect:map:location","make-effect:map:marker","make-effect:map:pan","google-map","make-effect:map:clear"]}; diff --git a/servlet-htdocs/collects/jsworld/phonegap.js b/servlet-htdocs/collects/jsworld/phonegap.js index f1f7313..b1da709 100644 --- a/servlet-htdocs/collects/jsworld/phonegap.js +++ b/servlet-htdocs/collects/jsworld/phonegap.js @@ -1,2 +1,2 @@ window.COLLECTIONS = window.COLLECTIONS || {}; -window.COLLECTIONS["jsworld/phonegap"] = { 'name': "jsworld/phonegap", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"sms"},{"$":"global-bucket","value":"geolocation"},{"$":"global-bucket","value":"world-updater"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"effect-updater"},{"$":"global-bucket","value":"accelerometer"},{"$":"global-bucket","value":"on-shake"},{"$":"global-bucket","value":"on-sms-receive"},{"$":"global-bucket","value":"on-sms-receive!"},{"$":"global-bucket","value":"on-shake!"},{"$":"global-bucket","value":"on-location-change"},{"$":"global-bucket","value":"on-location-change!"},{"$":"global-bucket","value":"on-acceleration!"},{"$":"global-bucket","value":"on-acceleration"},{"$":"module-variable","sym":types.symbol("world-with-effects"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("prim-js->scheme"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-world-config"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-new"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-get-field"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-get-named-object"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-call"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("error"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1259,36,9,16])}],"body":{"$":"lam","name":types.symbol("on-acceleration!"),"locs":[types.vector(["jsworld/phonegap",1259,36,9,16]),types.vector(["jsworld/phonegap",1276,36,26,13]),types.vector(["jsworld/phonegap",1290,36,40,14])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1308,37,2,930]),types.vector(["jsworld/phonegap",1329,37,23,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1308,37,2,930])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1308,37,2,930]),types.vector(["jsworld/phonegap",1315,37,9,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1409,38,5,17]),types.vector(["jsworld/phonegap",1427,38,23,238]),types.vector(["jsworld/phonegap",1689,43,23,45]),types.vector(["jsworld/phonegap",1758,44,23,347]),types.vector(["jsworld/phonegap",2129,50,23,107])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1408,38,4,829])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1409,38,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1428,38,24,6]),types.vector(["jsworld/phonegap",1436,38,32,7]),types.vector(["jsworld/phonegap",1444,38,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1477,39,26,7]),types.vector(["jsworld/phonegap",1485,39,34,48]),types.vector(["jsworld/phonegap",1568,40,34,13]),types.vector(["jsworld/phonegap",1616,41,34,7]),types.vector(["jsworld/phonegap",1658,42,34,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1476,39,25,188])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1477,39,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1486,39,35,12]),types.vector(["jsworld/phonegap",1499,39,48,13]),types.vector(["jsworld/phonegap",1513,39,62,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1485,39,34,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1486,39,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchAcceleration"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1690,43,24,6]),types.vector(["jsworld/phonegap",1698,43,32,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1711,43,45,7]),types.vector(["jsworld/phonegap",1719,43,53,10]),types.vector(["jsworld/phonegap",1730,43,64,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1710,43,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1711,43,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1759,44,24,6]),types.vector(["jsworld/phonegap",1767,44,32,1]),types.vector(["jsworld/phonegap",1769,44,34,4]),types.vector(["jsworld/phonegap",1774,44,39,4]),types.vector(["jsworld/phonegap",1779,44,44,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1810,45,25,294]),types.vector(["jsworld/phonegap",1819,45,34,22]),types.vector(["jsworld/phonegap",1877,46,34,22]),types.vector(["jsworld/phonegap",1935,47,34,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1810,45,25,294])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1810,45,25,294]),types.vector(["jsworld/phonegap",1817,45,32,1]),types.vector(["jsworld/phonegap",1875,46,32,1]),types.vector(["jsworld/phonegap",1933,47,32,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1988,48,28,18]),types.vector(["jsworld/phonegap",2007,48,47,24]),types.vector(["jsworld/phonegap",2079,49,47,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1987,48,27,116])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1988,48,28,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2008,48,48,14]),types.vector(["jsworld/phonegap",2023,48,63,1]),types.vector(["jsworld/phonegap",2025,48,65,1]),types.vector(["jsworld/phonegap",2027,48,67,1]),types.vector(["jsworld/phonegap",2029,48,69,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2007,48,47,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2080,49,48,13]),types.vector(["jsworld/phonegap",2094,49,62,1]),types.vector(["jsworld/phonegap",2096,49,64,1]),types.vector(["jsworld/phonegap",2098,49,66,1]),types.vector(["jsworld/phonegap",2100,49,68,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2079,49,47,23])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1820,45,35,15]),types.vector(["jsworld/phonegap",1836,45,51,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1819,45,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1820,45,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1878,46,35,15]),types.vector(["jsworld/phonegap",1894,46,51,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1877,46,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1878,46,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1936,47,35,15]),types.vector(["jsworld/phonegap",1952,47,51,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1935,47,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1936,47,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2130,50,24,6]),types.vector(["jsworld/phonegap",2138,50,32,1]),types.vector(["jsworld/phonegap",2140,50,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2169,51,26,5]),types.vector(["jsworld/phonegap",2175,51,32,17]),types.vector(["jsworld/phonegap",2193,51,50,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2168,51,25,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2169,51,26,5])},"rands":[{"$":"constant","value":types.symbol("on-acceleration!")},{"$":"constant","value":"an error occured with the accelerometer"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1330,37,24,6]),types.vector(["jsworld/phonegap",1337,37,31,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1329,37,23,72])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1330,37,24,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1338,37,32,12]),types.vector(["jsworld/phonegap",1351,37,45,32]),types.vector(["jsworld/phonegap",1384,37,78,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1337,37,31,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1338,37,32,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1352,37,46,19]),types.vector(["jsworld/phonegap",1372,37,66,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1351,37,45,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1352,37,46,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Accelerometer"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2309,57,9,15])}],"body":{"$":"lam","name":types.symbol("on-acceleration"),"locs":[types.vector(["jsworld/phonegap",2309,57,9,15]),types.vector(["jsworld/phonegap",2325,57,25,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2342,58,2,837]),types.vector(["jsworld/phonegap",2363,58,23,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2342,58,2,837])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2342,58,2,837]),types.vector(["jsworld/phonegap",2349,58,9,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2443,59,5,17]),types.vector(["jsworld/phonegap",2461,59,23,238]),types.vector(["jsworld/phonegap",2723,64,23,45]),types.vector(["jsworld/phonegap",2792,65,23,255]),types.vector(["jsworld/phonegap",3071,70,23,106])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2442,59,4,736])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2443,59,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2462,59,24,6]),types.vector(["jsworld/phonegap",2470,59,32,7]),types.vector(["jsworld/phonegap",2478,59,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2511,60,26,7]),types.vector(["jsworld/phonegap",2519,60,34,48]),types.vector(["jsworld/phonegap",2602,61,34,13]),types.vector(["jsworld/phonegap",2650,62,34,7]),types.vector(["jsworld/phonegap",2692,63,34,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2510,60,25,188])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2511,60,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2520,60,35,12]),types.vector(["jsworld/phonegap",2533,60,48,13]),types.vector(["jsworld/phonegap",2547,60,62,19])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2519,60,34,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2520,60,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchAcceleration"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2724,64,24,6]),types.vector(["jsworld/phonegap",2732,64,32,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2745,64,45,7]),types.vector(["jsworld/phonegap",2753,64,53,10]),types.vector(["jsworld/phonegap",2764,64,64,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2744,64,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2745,64,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2793,65,24,6]),types.vector(["jsworld/phonegap",2801,65,32,1]),types.vector(["jsworld/phonegap",2803,65,34,4]),types.vector(["jsworld/phonegap",2808,65,39,4]),types.vector(["jsworld/phonegap",2813,65,44,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2844,66,25,202]),types.vector(["jsworld/phonegap",2853,66,34,22]),types.vector(["jsworld/phonegap",2911,67,34,22]),types.vector(["jsworld/phonegap",2969,68,34,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2844,66,25,202])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2844,66,25,202]),types.vector(["jsworld/phonegap",2851,66,32,1]),types.vector(["jsworld/phonegap",2909,67,32,1]),types.vector(["jsworld/phonegap",2967,68,32,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3022,69,28,14]),types.vector(["jsworld/phonegap",3037,69,43,1]),types.vector(["jsworld/phonegap",3039,69,45,1]),types.vector(["jsworld/phonegap",3041,69,47,1]),types.vector(["jsworld/phonegap",3043,69,49,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3021,69,27,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3022,69,28,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2854,66,35,15]),types.vector(["jsworld/phonegap",2870,66,51,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2853,66,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2854,66,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2912,67,35,15]),types.vector(["jsworld/phonegap",2928,67,51,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2911,67,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2912,67,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2970,68,35,15]),types.vector(["jsworld/phonegap",2986,68,51,4])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2969,68,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2970,68,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3072,70,24,6]),types.vector(["jsworld/phonegap",3080,70,32,1]),types.vector(["jsworld/phonegap",3082,70,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3111,71,26,5]),types.vector(["jsworld/phonegap",3117,71,32,16]),types.vector(["jsworld/phonegap",3134,71,49,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3110,71,25,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3111,71,26,5])},"rands":[{"$":"constant","value":types.symbol("on-acceleration")},{"$":"constant","value":"an error occured with the accelerometer"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2364,58,24,6]),types.vector(["jsworld/phonegap",2371,58,31,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2363,58,23,72])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2364,58,24,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2372,58,32,12]),types.vector(["jsworld/phonegap",2385,58,45,32]),types.vector(["jsworld/phonegap",2418,58,78,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2371,58,31,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2372,58,32,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2386,58,46,19]),types.vector(["jsworld/phonegap",2406,58,66,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2385,58,45,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2386,58,46,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Accelerometer"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3250,78,9,9])}],"body":{"$":"lam","name":types.symbol("on-shake!"),"locs":[types.vector(["jsworld/phonegap",3250,78,9,9]),types.vector(["jsworld/phonegap",3260,78,19,13]),types.vector(["jsworld/phonegap",3274,78,33,14])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3292,79,2,709]),types.vector(["jsworld/phonegap",3313,79,23,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3292,79,2,709])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3292,79,2,709]),types.vector(["jsworld/phonegap",3299,79,9,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3393,80,5,17]),types.vector(["jsworld/phonegap",3411,80,23,231]),types.vector(["jsworld/phonegap",3666,85,23,45]),types.vector(["jsworld/phonegap",3735,86,23,140]),types.vector(["jsworld/phonegap",3899,89,23,100])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3392,80,4,608])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3393,80,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3412,80,24,6]),types.vector(["jsworld/phonegap",3420,80,32,7]),types.vector(["jsworld/phonegap",3428,80,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3461,81,26,7]),types.vector(["jsworld/phonegap",3469,81,34,41]),types.vector(["jsworld/phonegap",3545,82,34,13]),types.vector(["jsworld/phonegap",3593,83,34,7]),types.vector(["jsworld/phonegap",3635,84,34,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3460,81,25,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3461,81,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3470,81,35,12]),types.vector(["jsworld/phonegap",3483,81,48,13]),types.vector(["jsworld/phonegap",3497,81,62,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3469,81,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3470,81,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchShake"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3667,85,24,6]),types.vector(["jsworld/phonegap",3675,85,32,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3688,85,45,7]),types.vector(["jsworld/phonegap",3696,85,53,10]),types.vector(["jsworld/phonegap",3707,85,64,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3687,85,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3688,85,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3736,86,24,6]),types.vector(["jsworld/phonegap",3744,86,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3773,87,26,18]),types.vector(["jsworld/phonegap",3792,87,45,18]),types.vector(["jsworld/phonegap",3856,88,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3772,87,25,102])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3773,87,26,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3793,87,46,14]),types.vector(["jsworld/phonegap",3808,87,61,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3792,87,45,18])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3857,88,46,13]),types.vector(["jsworld/phonegap",3871,88,60,1])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3856,88,45,17])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3900,89,24,6]),types.vector(["jsworld/phonegap",3908,89,32,1]),types.vector(["jsworld/phonegap",3910,89,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3939,90,26,5]),types.vector(["jsworld/phonegap",3945,90,32,10]),types.vector(["jsworld/phonegap",3956,90,43,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3938,90,25,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3939,90,26,5])},"rands":[{"$":"constant","value":types.symbol("on-shake!")},{"$":"constant","value":"an error occured with the accelerometer"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3314,79,24,6]),types.vector(["jsworld/phonegap",3321,79,31,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3313,79,23,72])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3314,79,24,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3322,79,32,12]),types.vector(["jsworld/phonegap",3335,79,45,32]),types.vector(["jsworld/phonegap",3368,79,78,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3321,79,31,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3322,79,32,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3336,79,46,19]),types.vector(["jsworld/phonegap",3356,79,66,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3335,79,45,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3336,79,46,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Accelerometer"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4086,95,9,8])}],"body":{"$":"lam","name":types.symbol("on-shake"),"locs":[types.vector(["jsworld/phonegap",4086,95,9,8]),types.vector(["jsworld/phonegap",4095,95,18,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4112,96,2,581]),types.vector(["jsworld/phonegap",4133,96,23,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4112,96,2,581])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",4112,96,2,581]),types.vector(["jsworld/phonegap",4119,96,9,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4213,97,5,17]),types.vector(["jsworld/phonegap",4231,97,23,231]),types.vector(["jsworld/phonegap",4486,102,23,45]),types.vector(["jsworld/phonegap",4555,103,23,13]),types.vector(["jsworld/phonegap",4592,104,23,99])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4212,97,4,480])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4213,97,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",4232,97,24,6]),types.vector(["jsworld/phonegap",4240,97,32,7]),types.vector(["jsworld/phonegap",4248,97,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4281,98,26,7]),types.vector(["jsworld/phonegap",4289,98,34,41]),types.vector(["jsworld/phonegap",4365,99,34,13]),types.vector(["jsworld/phonegap",4413,100,34,7]),types.vector(["jsworld/phonegap",4455,101,34,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4280,98,25,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4281,98,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4290,98,35,12]),types.vector(["jsworld/phonegap",4303,98,48,13]),types.vector(["jsworld/phonegap",4317,98,62,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4289,98,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4290,98,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchShake"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",4487,102,24,6]),types.vector(["jsworld/phonegap",4495,102,32,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4508,102,45,7]),types.vector(["jsworld/phonegap",4516,102,53,10]),types.vector(["jsworld/phonegap",4527,102,64,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4507,102,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4508,102,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",4593,104,24,6]),types.vector(["jsworld/phonegap",4601,104,32,1]),types.vector(["jsworld/phonegap",4603,104,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4632,105,26,5]),types.vector(["jsworld/phonegap",4638,105,32,9]),types.vector(["jsworld/phonegap",4648,105,42,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4631,105,25,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4632,105,26,5])},"rands":[{"$":"constant","value":types.symbol("on-shake")},{"$":"constant","value":"an error occured with the accelerometer"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4134,96,24,6]),types.vector(["jsworld/phonegap",4141,96,31,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4133,96,23,72])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4134,96,24,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4142,96,32,12]),types.vector(["jsworld/phonegap",4155,96,45,32]),types.vector(["jsworld/phonegap",4188,96,78,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4141,96,31,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4142,96,32,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4156,96,46,19]),types.vector(["jsworld/phonegap",4176,96,66,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4155,96,45,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4156,96,46,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Accelerometer"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",6857,147,9,19])}],"body":{"$":"lam","name":types.symbol("on-location-change!"),"locs":[types.vector(["jsworld/phonegap",6857,147,9,19]),types.vector(["jsworld/phonegap",6877,147,29,13]),types.vector(["jsworld/phonegap",6891,147,43,14])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",6909,148,2,940]),types.vector(["jsworld/phonegap",6928,148,21,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",6909,148,2,940])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",6909,148,2,940]),types.vector(["jsworld/phonegap",6916,148,9,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7006,150,5,17]),types.vector(["jsworld/phonegap",7024,150,23,230]),types.vector(["jsworld/phonegap",7278,155,23,168]),types.vector(["jsworld/phonegap",7470,158,23,236]),types.vector(["jsworld/phonegap",7730,161,23,117])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7005,150,4,843])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7006,150,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7025,150,24,6]),types.vector(["jsworld/phonegap",7033,150,32,7]),types.vector(["jsworld/phonegap",7041,150,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7074,151,26,7]),types.vector(["jsworld/phonegap",7082,151,34,42]),types.vector(["jsworld/phonegap",7159,152,34,11]),types.vector(["jsworld/phonegap",7205,153,34,7]),types.vector(["jsworld/phonegap",7247,154,34,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7073,151,25,180])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7074,151,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7083,151,35,12]),types.vector(["jsworld/phonegap",7096,151,48,11]),types.vector(["jsworld/phonegap",7108,151,60,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7082,151,34,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7083,151,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchPosition"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7279,155,24,6]),types.vector(["jsworld/phonegap",7287,155,32,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7292,155,37,7]),types.vector(["jsworld/phonegap",7300,155,45,39]),types.vector(["jsworld/phonegap",7385,156,45,11]),types.vector(["jsworld/phonegap",7442,157,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7291,155,36,154])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7292,155,37,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7301,155,46,12]),types.vector(["jsworld/phonegap",7314,155,59,11]),types.vector(["jsworld/phonegap",7326,155,71,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7300,155,45,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7301,155,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"clearWatch"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7471,158,24,6]),types.vector(["jsworld/phonegap",7479,158,32,1]),types.vector(["jsworld/phonegap",7481,158,34,3]),types.vector(["jsworld/phonegap",7485,158,38,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7516,159,26,18]),types.vector(["jsworld/phonegap",7535,159,45,62]),types.vector(["jsworld/phonegap",7643,160,45,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7515,159,25,190])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7516,159,26,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7536,159,46,14]),types.vector(["jsworld/phonegap",7551,159,61,1]),types.vector(["jsworld/phonegap",7553,159,63,21]),types.vector(["jsworld/phonegap",7575,159,85,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7535,159,45,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7554,159,64,15]),types.vector(["jsworld/phonegap",7570,159,80,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7553,159,63,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7554,159,64,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7576,159,86,15]),types.vector(["jsworld/phonegap",7592,159,102,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7575,159,85,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7576,159,86,15])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7644,160,46,13]),types.vector(["jsworld/phonegap",7658,160,60,1]),types.vector(["jsworld/phonegap",7660,160,62,21]),types.vector(["jsworld/phonegap",7682,160,84,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7643,160,45,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7661,160,63,15]),types.vector(["jsworld/phonegap",7677,160,79,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7660,160,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7661,160,63,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7683,160,85,15]),types.vector(["jsworld/phonegap",7699,160,101,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7682,160,84,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7683,160,85,15])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7731,161,24,6]),types.vector(["jsworld/phonegap",7739,161,32,1]),types.vector(["jsworld/phonegap",7741,161,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7770,162,26,5]),types.vector(["jsworld/phonegap",7776,162,32,20]),types.vector(["jsworld/phonegap",7797,162,53,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7769,162,25,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7770,162,26,5])},"rands":[{"$":"constant","value":types.symbol("on-location-change!")},{"$":"constant","value":"an error occurred with accessing GPS locations"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",6929,148,22,12]),types.vector(["jsworld/phonegap",6942,148,35,33]),types.vector(["jsworld/phonegap",6983,149,35,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",6928,148,21,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",6929,148,22,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",6943,148,36,19]),types.vector(["jsworld/phonegap",6963,148,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",6942,148,35,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",6943,148,36,19])},"rands":[{"$":"constant","value":"navigator"}]}}},{"$":"constant","value":"phonegap_geo"}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7926,167,9,18])}],"body":{"$":"lam","name":types.symbol("on-location-change"),"locs":[types.vector(["jsworld/phonegap",7926,167,9,18]),types.vector(["jsworld/phonegap",7945,167,28,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7962,168,2,810]),types.vector(["jsworld/phonegap",7981,168,21,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7962,168,2,810])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7962,168,2,810]),types.vector(["jsworld/phonegap",7969,168,9,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8059,170,5,17]),types.vector(["jsworld/phonegap",8077,170,23,230]),types.vector(["jsworld/phonegap",8331,175,23,168]),types.vector(["jsworld/phonegap",8523,178,23,107]),types.vector(["jsworld/phonegap",8654,180,23,116])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8058,170,4,713])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8059,170,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8078,170,24,6]),types.vector(["jsworld/phonegap",8086,170,32,7]),types.vector(["jsworld/phonegap",8094,170,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8127,171,26,7]),types.vector(["jsworld/phonegap",8135,171,34,42]),types.vector(["jsworld/phonegap",8212,172,34,11]),types.vector(["jsworld/phonegap",8258,173,34,7]),types.vector(["jsworld/phonegap",8300,174,34,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8126,171,25,180])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8127,171,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8136,171,35,12]),types.vector(["jsworld/phonegap",8149,171,48,11]),types.vector(["jsworld/phonegap",8161,171,60,15])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8135,171,34,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8136,171,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchPosition"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8332,175,24,6]),types.vector(["jsworld/phonegap",8340,175,32,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8345,175,37,7]),types.vector(["jsworld/phonegap",8353,175,45,39]),types.vector(["jsworld/phonegap",8438,176,45,11]),types.vector(["jsworld/phonegap",8495,177,45,2])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8344,175,36,154])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8345,175,37,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8354,175,46,12]),types.vector(["jsworld/phonegap",8367,175,59,11]),types.vector(["jsworld/phonegap",8379,175,71,12])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8353,175,45,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8354,175,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"clearWatch"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8524,178,24,6]),types.vector(["jsworld/phonegap",8532,178,32,1]),types.vector(["jsworld/phonegap",8534,178,34,3]),types.vector(["jsworld/phonegap",8538,178,38,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8569,179,26,13]),types.vector(["jsworld/phonegap",8583,179,40,1]),types.vector(["jsworld/phonegap",8585,179,42,21]),types.vector(["jsworld/phonegap",8607,179,64,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8568,179,25,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8586,179,43,15]),types.vector(["jsworld/phonegap",8602,179,59,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8585,179,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8586,179,43,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8608,179,65,15]),types.vector(["jsworld/phonegap",8624,179,81,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8607,179,64,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8608,179,65,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8655,180,24,6]),types.vector(["jsworld/phonegap",8663,180,32,1]),types.vector(["jsworld/phonegap",8665,180,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8694,181,26,5]),types.vector(["jsworld/phonegap",8700,181,32,19]),types.vector(["jsworld/phonegap",8720,181,52,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8693,181,25,76])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8694,181,26,5])},"rands":[{"$":"constant","value":types.symbol("on-location-change")},{"$":"constant","value":"an error occurred with accessing GPS locations"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7982,168,22,12]),types.vector(["jsworld/phonegap",7995,168,35,33]),types.vector(["jsworld/phonegap",8036,169,35,14])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7981,168,21,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7982,168,22,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7996,168,36,19]),types.vector(["jsworld/phonegap",8016,168,56,11])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7995,168,35,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7996,168,36,19])},"rands":[{"$":"constant","value":"navigator"}]}}},{"$":"constant","value":"phonegap_geo"}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8848,186,9,15])}],"body":{"$":"lam","name":types.symbol("on-sms-receive!"),"locs":[types.vector(["jsworld/phonegap",8848,186,9,15]),types.vector(["jsworld/phonegap",8864,186,25,13]),types.vector(["jsworld/phonegap",8878,186,39,14])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8896,187,2,692]),types.vector(["jsworld/phonegap",8907,187,13,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8896,187,2,692])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8896,187,2,692]),types.vector(["jsworld/phonegap",8903,187,9,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8977,188,5,17]),types.vector(["jsworld/phonegap",8995,188,23,166]),types.vector(["jsworld/phonegap",9185,192,23,4]),types.vector(["jsworld/phonegap",9259,193,23,327])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8976,188,4,611])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8977,188,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8996,188,24,6]),types.vector(["jsworld/phonegap",9004,188,32,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9039,189,26,7]),types.vector(["jsworld/phonegap",9047,189,34,32]),types.vector(["jsworld/phonegap",9114,190,34,3]),types.vector(["jsworld/phonegap",9152,191,34,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9038,189,25,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9039,189,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9048,189,35,12]),types.vector(["jsworld/phonegap",9061,189,48,3]),types.vector(["jsworld/phonegap",9065,189,52,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9047,189,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9048,189,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"addListener"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"toplevel","depth":3,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9185,192,23,4])},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",9260,193,24,6]),types.vector(["jsworld/phonegap",9268,193,32,1]),types.vector(["jsworld/phonegap",9270,193,34,13]),types.vector(["jsworld/phonegap",9284,193,48,10])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9321,194,25,264]),types.vector(["jsworld/phonegap",9335,194,39,31]),types.vector(["jsworld/phonegap",9404,195,36,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9321,194,25,264])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",9321,194,25,264]),types.vector(["jsworld/phonegap",9328,194,32,6]),types.vector(["jsworld/phonegap",9400,195,32,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9461,196,26,18]),types.vector(["jsworld/phonegap",9480,196,45,29]),types.vector(["jsworld/phonegap",9555,197,45,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9460,196,25,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9461,196,26,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9481,196,46,14]),types.vector(["jsworld/phonegap",9496,196,61,1]),types.vector(["jsworld/phonegap",9498,196,63,6]),types.vector(["jsworld/phonegap",9505,196,70,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9480,196,45,29])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9556,197,46,13]),types.vector(["jsworld/phonegap",9570,197,60,1]),types.vector(["jsworld/phonegap",9572,197,62,6]),types.vector(["jsworld/phonegap",9579,197,69,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9555,197,45,28])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9336,194,40,15]),types.vector(["jsworld/phonegap",9352,194,56,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9335,194,39,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9336,194,40,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9405,195,37,15]),types.vector(["jsworld/phonegap",9421,195,53,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9404,195,36,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9405,195,37,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8908,187,14,6]),types.vector(["jsworld/phonegap",8915,187,21,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8907,187,13,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8908,187,14,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8916,187,22,12]),types.vector(["jsworld/phonegap",8929,187,35,32]),types.vector(["jsworld/phonegap",8962,187,68,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8915,187,21,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8916,187,22,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8930,187,36,19]),types.vector(["jsworld/phonegap",8950,187,56,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8929,187,35,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8930,187,36,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Sms"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9660,201,9,14])}],"body":{"$":"lam","name":types.symbol("on-sms-receive"),"locs":[types.vector(["jsworld/phonegap",9660,201,9,14]),types.vector(["jsworld/phonegap",9675,201,24,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9692,202,2,596]),types.vector(["jsworld/phonegap",9703,202,13,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9692,202,2,596])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",9692,202,2,596]),types.vector(["jsworld/phonegap",9699,202,9,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9773,203,5,17]),types.vector(["jsworld/phonegap",9791,203,23,166]),types.vector(["jsworld/phonegap",9981,207,23,4]),types.vector(["jsworld/phonegap",10055,208,23,231])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9772,203,4,515])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9773,203,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",9792,203,24,6]),types.vector(["jsworld/phonegap",9800,203,32,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9835,204,26,7]),types.vector(["jsworld/phonegap",9843,204,34,32]),types.vector(["jsworld/phonegap",9910,205,34,3]),types.vector(["jsworld/phonegap",9948,206,34,7])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9834,204,25,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9835,204,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9844,204,35,12]),types.vector(["jsworld/phonegap",9857,204,48,3]),types.vector(["jsworld/phonegap",9861,204,52,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9843,204,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9844,204,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"addListener"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"toplevel","depth":3,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9981,207,23,4])},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",10056,208,24,6]),types.vector(["jsworld/phonegap",10064,208,32,1]),types.vector(["jsworld/phonegap",10066,208,34,13]),types.vector(["jsworld/phonegap",10080,208,48,10])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",10117,209,25,168]),types.vector(["jsworld/phonegap",10131,209,39,31]),types.vector(["jsworld/phonegap",10200,210,36,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",10117,209,25,168])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",10117,209,25,168]),types.vector(["jsworld/phonegap",10124,209,32,6]),types.vector(["jsworld/phonegap",10196,210,32,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",10257,211,26,13]),types.vector(["jsworld/phonegap",10271,211,40,1]),types.vector(["jsworld/phonegap",10273,211,42,6]),types.vector(["jsworld/phonegap",10280,211,49,3])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",10256,211,25,28])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",10132,209,40,15]),types.vector(["jsworld/phonegap",10148,209,56,13])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",10131,209,39,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",10132,209,40,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",10201,210,37,15]),types.vector(["jsworld/phonegap",10217,210,53,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",10200,210,36,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",10201,210,37,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9704,202,14,6]),types.vector(["jsworld/phonegap",9711,202,21,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9703,202,13,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9704,202,14,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9712,202,22,12]),types.vector(["jsworld/phonegap",9725,202,35,32]),types.vector(["jsworld/phonegap",9758,202,68,5])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9711,202,21,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9712,202,22,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9726,202,36,19]),types.vector(["jsworld/phonegap",9746,202,56,10])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9725,202,35,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9726,202,36,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Sms"}]}}}]}}}]}}}}}]}}, 'provides': ["on-shake","on-sms-receive","on-sms-receive!","on-shake!","on-location-change","on-location-change!","on-acceleration!","on-acceleration"]}; +window.COLLECTIONS["jsworld/phonegap"] = { 'name': "jsworld/phonegap", 'bytecode': {"$":"compilation-top","max-let-depth":0,"prefix":{"$":"prefix","num-lifts":0,"toplevels":[false,{"$":"global-bucket","value":"sms"},{"$":"global-bucket","value":"geolocation"},{"$":"global-bucket","value":"world-updater"},{"$":"global-bucket","value":"w"},{"$":"global-bucket","value":"effect-updater"},{"$":"global-bucket","value":"accelerometer"},{"$":"global-bucket","value":"on-shake"},{"$":"global-bucket","value":"on-sms-receive"},{"$":"global-bucket","value":"on-sms-receive!"},{"$":"global-bucket","value":"on-shake!"},{"$":"global-bucket","value":"on-location-change"},{"$":"global-bucket","value":"on-location-change!"},{"$":"global-bucket","value":"on-acceleration!"},{"$":"global-bucket","value":"on-acceleration"},{"$":"module-variable","sym":types.symbol("world-with-effects"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("void"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("prim-js->scheme"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("make-world-config"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-new"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-get-field"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-get-named-object"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("js-call"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0},{"$":"module-variable","sym":types.symbol("error"),"modidx":{"$":"module-path","path":"moby/toplevel","base":{"$":"module-path","path":false,"base":false}},"pos":-1,"phase":0}],"stxs":[]},"compiled-indirects":[],"code":{"$":"seq","forms":[{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":13,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1259,36,9,16])}],"body":{"$":"lam","name":types.symbol("on-acceleration!"),"locs":[types.vector(["jsworld/phonegap",1259,36,9,16]),types.vector(["jsworld/phonegap",1276,36,26,13]),types.vector(["jsworld/phonegap",1290,36,40,14])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1308,37,2,930]),types.vector(["jsworld/phonegap",1329,37,23,72]),types.vector(["jsworld/phonegap",1308,37,2,930])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1308,37,2,930])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1308,37,2,930]),types.vector(["jsworld/phonegap",1315,37,9,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1409,38,5,17]),types.vector(["jsworld/phonegap",1427,38,23,238]),types.vector(["jsworld/phonegap",1689,43,23,45]),types.vector(["jsworld/phonegap",1758,44,23,347]),types.vector(["jsworld/phonegap",2129,50,23,107]),types.vector(["jsworld/phonegap",1408,38,4,829])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1408,38,4,829])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1409,38,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1428,38,24,6]),types.vector(["jsworld/phonegap",1436,38,32,7]),types.vector(["jsworld/phonegap",1444,38,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1477,39,26,7]),types.vector(["jsworld/phonegap",1485,39,34,48]),types.vector(["jsworld/phonegap",1568,40,34,13]),types.vector(["jsworld/phonegap",1616,41,34,7]),types.vector(["jsworld/phonegap",1658,42,34,5]),types.vector(["jsworld/phonegap",1476,39,25,188])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1476,39,25,188])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1477,39,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1486,39,35,12]),types.vector(["jsworld/phonegap",1499,39,48,13]),types.vector(["jsworld/phonegap",1513,39,62,19]),types.vector(["jsworld/phonegap",1485,39,34,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1485,39,34,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1486,39,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchAcceleration"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1690,43,24,6]),types.vector(["jsworld/phonegap",1698,43,32,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1711,43,45,7]),types.vector(["jsworld/phonegap",1719,43,53,10]),types.vector(["jsworld/phonegap",1730,43,64,2]),types.vector(["jsworld/phonegap",1710,43,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1710,43,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1711,43,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1759,44,24,6]),types.vector(["jsworld/phonegap",1767,44,32,1]),types.vector(["jsworld/phonegap",1769,44,34,4]),types.vector(["jsworld/phonegap",1774,44,39,4]),types.vector(["jsworld/phonegap",1779,44,44,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1810,45,25,294]),types.vector(["jsworld/phonegap",1819,45,34,22]),types.vector(["jsworld/phonegap",1877,46,34,22]),types.vector(["jsworld/phonegap",1935,47,34,22]),types.vector(["jsworld/phonegap",1810,45,25,294])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1810,45,25,294])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",1810,45,25,294]),types.vector(["jsworld/phonegap",1817,45,32,1]),types.vector(["jsworld/phonegap",1875,46,32,1]),types.vector(["jsworld/phonegap",1933,47,32,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1988,48,28,18]),types.vector(["jsworld/phonegap",2007,48,47,24]),types.vector(["jsworld/phonegap",2079,49,47,23]),types.vector(["jsworld/phonegap",1987,48,27,116])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1987,48,27,116])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1988,48,28,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2008,48,48,14]),types.vector(["jsworld/phonegap",2023,48,63,1]),types.vector(["jsworld/phonegap",2025,48,65,1]),types.vector(["jsworld/phonegap",2027,48,67,1]),types.vector(["jsworld/phonegap",2029,48,69,1]),types.vector(["jsworld/phonegap",2007,48,47,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2007,48,47,24])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2080,49,48,13]),types.vector(["jsworld/phonegap",2094,49,62,1]),types.vector(["jsworld/phonegap",2096,49,64,1]),types.vector(["jsworld/phonegap",2098,49,66,1]),types.vector(["jsworld/phonegap",2100,49,68,1]),types.vector(["jsworld/phonegap",2079,49,47,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2079,49,47,23])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":12,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1820,45,35,15]),types.vector(["jsworld/phonegap",1836,45,51,4]),types.vector(["jsworld/phonegap",1819,45,34,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1819,45,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1820,45,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1878,46,35,15]),types.vector(["jsworld/phonegap",1894,46,51,4]),types.vector(["jsworld/phonegap",1877,46,34,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1877,46,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1878,46,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1936,47,35,15]),types.vector(["jsworld/phonegap",1952,47,51,4]),types.vector(["jsworld/phonegap",1935,47,34,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1935,47,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1936,47,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2130,50,24,6]),types.vector(["jsworld/phonegap",2138,50,32,1]),types.vector(["jsworld/phonegap",2140,50,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2169,51,26,5]),types.vector(["jsworld/phonegap",2175,51,32,17]),types.vector(["jsworld/phonegap",2193,51,50,41]),types.vector(["jsworld/phonegap",2168,51,25,67])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2168,51,25,67])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2169,51,26,5])},"rands":[{"$":"constant","value":types.symbol("on-acceleration!")},{"$":"constant","value":"an error occured with the accelerometer"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1330,37,24,6]),types.vector(["jsworld/phonegap",1337,37,31,63]),types.vector(["jsworld/phonegap",1329,37,23,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1329,37,23,72])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1330,37,24,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1338,37,32,12]),types.vector(["jsworld/phonegap",1351,37,45,32]),types.vector(["jsworld/phonegap",1384,37,78,15]),types.vector(["jsworld/phonegap",1337,37,31,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1337,37,31,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1338,37,32,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",1352,37,46,19]),types.vector(["jsworld/phonegap",1372,37,66,10]),types.vector(["jsworld/phonegap",1351,37,45,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",1351,37,45,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",1352,37,46,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Accelerometer"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":14,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2309,57,9,15])}],"body":{"$":"lam","name":types.symbol("on-acceleration"),"locs":[types.vector(["jsworld/phonegap",2309,57,9,15]),types.vector(["jsworld/phonegap",2325,57,25,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2342,58,2,837]),types.vector(["jsworld/phonegap",2363,58,23,72]),types.vector(["jsworld/phonegap",2342,58,2,837])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2342,58,2,837])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2342,58,2,837]),types.vector(["jsworld/phonegap",2349,58,9,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2443,59,5,17]),types.vector(["jsworld/phonegap",2461,59,23,238]),types.vector(["jsworld/phonegap",2723,64,23,45]),types.vector(["jsworld/phonegap",2792,65,23,255]),types.vector(["jsworld/phonegap",3071,70,23,106]),types.vector(["jsworld/phonegap",2442,59,4,736])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2442,59,4,736])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2443,59,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2462,59,24,6]),types.vector(["jsworld/phonegap",2470,59,32,7]),types.vector(["jsworld/phonegap",2478,59,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2511,60,26,7]),types.vector(["jsworld/phonegap",2519,60,34,48]),types.vector(["jsworld/phonegap",2602,61,34,13]),types.vector(["jsworld/phonegap",2650,62,34,7]),types.vector(["jsworld/phonegap",2692,63,34,5]),types.vector(["jsworld/phonegap",2510,60,25,188])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2510,60,25,188])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2511,60,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2520,60,35,12]),types.vector(["jsworld/phonegap",2533,60,48,13]),types.vector(["jsworld/phonegap",2547,60,62,19]),types.vector(["jsworld/phonegap",2519,60,34,48])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2519,60,34,48])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2520,60,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchAcceleration"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2724,64,24,6]),types.vector(["jsworld/phonegap",2732,64,32,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2745,64,45,7]),types.vector(["jsworld/phonegap",2753,64,53,10]),types.vector(["jsworld/phonegap",2764,64,64,2]),types.vector(["jsworld/phonegap",2744,64,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2744,64,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2745,64,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2793,65,24,6]),types.vector(["jsworld/phonegap",2801,65,32,1]),types.vector(["jsworld/phonegap",2803,65,34,4]),types.vector(["jsworld/phonegap",2808,65,39,4]),types.vector(["jsworld/phonegap",2813,65,44,4])],"flags":[],"num-params":4,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2844,66,25,202]),types.vector(["jsworld/phonegap",2853,66,34,22]),types.vector(["jsworld/phonegap",2911,67,34,22]),types.vector(["jsworld/phonegap",2969,68,34,22]),types.vector(["jsworld/phonegap",2844,66,25,202])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2844,66,25,202])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",2844,66,25,202]),types.vector(["jsworld/phonegap",2851,66,32,1]),types.vector(["jsworld/phonegap",2909,67,32,1]),types.vector(["jsworld/phonegap",2967,68,32,1])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3022,69,28,14]),types.vector(["jsworld/phonegap",3037,69,43,1]),types.vector(["jsworld/phonegap",3039,69,45,1]),types.vector(["jsworld/phonegap",3041,69,47,1]),types.vector(["jsworld/phonegap",3043,69,49,1]),types.vector(["jsworld/phonegap",3021,69,27,24])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3021,69,27,24])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":5,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3022,69,28,14])},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2854,66,35,15]),types.vector(["jsworld/phonegap",2870,66,51,4]),types.vector(["jsworld/phonegap",2853,66,34,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2853,66,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2854,66,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2912,67,35,15]),types.vector(["jsworld/phonegap",2928,67,51,4]),types.vector(["jsworld/phonegap",2911,67,34,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2911,67,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2912,67,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2970,68,35,15]),types.vector(["jsworld/phonegap",2986,68,51,4]),types.vector(["jsworld/phonegap",2969,68,34,22])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2969,68,34,22])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2970,68,35,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3072,70,24,6]),types.vector(["jsworld/phonegap",3080,70,32,1]),types.vector(["jsworld/phonegap",3082,70,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3111,71,26,5]),types.vector(["jsworld/phonegap",3117,71,32,16]),types.vector(["jsworld/phonegap",3134,71,49,41]),types.vector(["jsworld/phonegap",3110,71,25,66])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3110,71,25,66])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3111,71,26,5])},"rands":[{"$":"constant","value":types.symbol("on-acceleration")},{"$":"constant","value":"an error occured with the accelerometer"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2364,58,24,6]),types.vector(["jsworld/phonegap",2371,58,31,63]),types.vector(["jsworld/phonegap",2363,58,23,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2363,58,23,72])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2364,58,24,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2372,58,32,12]),types.vector(["jsworld/phonegap",2385,58,45,32]),types.vector(["jsworld/phonegap",2418,58,78,15]),types.vector(["jsworld/phonegap",2371,58,31,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2371,58,31,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2372,58,32,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",2386,58,46,19]),types.vector(["jsworld/phonegap",2406,58,66,10]),types.vector(["jsworld/phonegap",2385,58,45,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",2385,58,45,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",2386,58,46,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Accelerometer"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":10,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3250,78,9,9])}],"body":{"$":"lam","name":types.symbol("on-shake!"),"locs":[types.vector(["jsworld/phonegap",3250,78,9,9]),types.vector(["jsworld/phonegap",3260,78,19,13]),types.vector(["jsworld/phonegap",3274,78,33,14])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3292,79,2,709]),types.vector(["jsworld/phonegap",3313,79,23,72]),types.vector(["jsworld/phonegap",3292,79,2,709])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3292,79,2,709])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3292,79,2,709]),types.vector(["jsworld/phonegap",3299,79,9,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3393,80,5,17]),types.vector(["jsworld/phonegap",3411,80,23,231]),types.vector(["jsworld/phonegap",3666,85,23,45]),types.vector(["jsworld/phonegap",3735,86,23,140]),types.vector(["jsworld/phonegap",3899,89,23,100]),types.vector(["jsworld/phonegap",3392,80,4,608])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3392,80,4,608])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3393,80,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3412,80,24,6]),types.vector(["jsworld/phonegap",3420,80,32,7]),types.vector(["jsworld/phonegap",3428,80,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3461,81,26,7]),types.vector(["jsworld/phonegap",3469,81,34,41]),types.vector(["jsworld/phonegap",3545,82,34,13]),types.vector(["jsworld/phonegap",3593,83,34,7]),types.vector(["jsworld/phonegap",3635,84,34,5]),types.vector(["jsworld/phonegap",3460,81,25,181])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3460,81,25,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3461,81,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3470,81,35,12]),types.vector(["jsworld/phonegap",3483,81,48,13]),types.vector(["jsworld/phonegap",3497,81,62,12]),types.vector(["jsworld/phonegap",3469,81,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3469,81,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3470,81,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchShake"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3667,85,24,6]),types.vector(["jsworld/phonegap",3675,85,32,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3688,85,45,7]),types.vector(["jsworld/phonegap",3696,85,53,10]),types.vector(["jsworld/phonegap",3707,85,64,2]),types.vector(["jsworld/phonegap",3687,85,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3687,85,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3688,85,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3736,86,24,6]),types.vector(["jsworld/phonegap",3744,86,32,1])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3773,87,26,18]),types.vector(["jsworld/phonegap",3792,87,45,18]),types.vector(["jsworld/phonegap",3856,88,45,17]),types.vector(["jsworld/phonegap",3772,87,25,102])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3772,87,25,102])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3773,87,26,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3793,87,46,14]),types.vector(["jsworld/phonegap",3808,87,61,1]),types.vector(["jsworld/phonegap",3792,87,45,18])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3792,87,45,18])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3857,88,46,13]),types.vector(["jsworld/phonegap",3871,88,60,1]),types.vector(["jsworld/phonegap",3856,88,45,17])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3856,88,45,17])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",3900,89,24,6]),types.vector(["jsworld/phonegap",3908,89,32,1]),types.vector(["jsworld/phonegap",3910,89,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3939,90,26,5]),types.vector(["jsworld/phonegap",3945,90,32,10]),types.vector(["jsworld/phonegap",3956,90,43,41]),types.vector(["jsworld/phonegap",3938,90,25,60])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3938,90,25,60])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3939,90,26,5])},"rands":[{"$":"constant","value":types.symbol("on-shake!")},{"$":"constant","value":"an error occured with the accelerometer"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3314,79,24,6]),types.vector(["jsworld/phonegap",3321,79,31,63]),types.vector(["jsworld/phonegap",3313,79,23,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3313,79,23,72])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3314,79,24,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3322,79,32,12]),types.vector(["jsworld/phonegap",3335,79,45,32]),types.vector(["jsworld/phonegap",3368,79,78,15]),types.vector(["jsworld/phonegap",3321,79,31,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3321,79,31,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3322,79,32,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",3336,79,46,19]),types.vector(["jsworld/phonegap",3356,79,66,10]),types.vector(["jsworld/phonegap",3335,79,45,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",3335,79,45,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",3336,79,46,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Accelerometer"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":7,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4086,95,9,8])}],"body":{"$":"lam","name":types.symbol("on-shake"),"locs":[types.vector(["jsworld/phonegap",4086,95,9,8]),types.vector(["jsworld/phonegap",4095,95,18,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4112,96,2,581]),types.vector(["jsworld/phonegap",4133,96,23,72]),types.vector(["jsworld/phonegap",4112,96,2,581])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4112,96,2,581])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",4112,96,2,581]),types.vector(["jsworld/phonegap",4119,96,9,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4213,97,5,17]),types.vector(["jsworld/phonegap",4231,97,23,231]),types.vector(["jsworld/phonegap",4486,102,23,45]),types.vector(["jsworld/phonegap",4555,103,23,13]),types.vector(["jsworld/phonegap",4592,104,23,99]),types.vector(["jsworld/phonegap",4212,97,4,480])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4212,97,4,480])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4213,97,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",4232,97,24,6]),types.vector(["jsworld/phonegap",4240,97,32,7]),types.vector(["jsworld/phonegap",4248,97,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4281,98,26,7]),types.vector(["jsworld/phonegap",4289,98,34,41]),types.vector(["jsworld/phonegap",4365,99,34,13]),types.vector(["jsworld/phonegap",4413,100,34,7]),types.vector(["jsworld/phonegap",4455,101,34,5]),types.vector(["jsworld/phonegap",4280,98,25,181])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4280,98,25,181])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4281,98,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4290,98,35,12]),types.vector(["jsworld/phonegap",4303,98,48,13]),types.vector(["jsworld/phonegap",4317,98,62,12]),types.vector(["jsworld/phonegap",4289,98,34,41])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4289,98,34,41])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4290,98,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchShake"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",4487,102,24,6]),types.vector(["jsworld/phonegap",4495,102,32,10])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4508,102,45,7]),types.vector(["jsworld/phonegap",4516,102,53,10]),types.vector(["jsworld/phonegap",4527,102,64,2]),types.vector(["jsworld/phonegap",4507,102,44,23])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4507,102,44,23])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4508,102,45,7])},"rands":[{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":false}]}}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",4593,104,24,6]),types.vector(["jsworld/phonegap",4601,104,32,1]),types.vector(["jsworld/phonegap",4603,104,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4632,105,26,5]),types.vector(["jsworld/phonegap",4638,105,32,9]),types.vector(["jsworld/phonegap",4648,105,42,41]),types.vector(["jsworld/phonegap",4631,105,25,59])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4631,105,25,59])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4632,105,26,5])},"rands":[{"$":"constant","value":types.symbol("on-shake")},{"$":"constant","value":"an error occured with the accelerometer"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4134,96,24,6]),types.vector(["jsworld/phonegap",4141,96,31,63]),types.vector(["jsworld/phonegap",4133,96,23,72])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4133,96,23,72])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4134,96,24,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4142,96,32,12]),types.vector(["jsworld/phonegap",4155,96,45,32]),types.vector(["jsworld/phonegap",4188,96,78,15]),types.vector(["jsworld/phonegap",4141,96,31,63])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4141,96,31,63])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4142,96,32,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",4156,96,46,19]),types.vector(["jsworld/phonegap",4176,96,66,10]),types.vector(["jsworld/phonegap",4155,96,45,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",4155,96,45,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",4156,96,46,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Accelerometer"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":12,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",6857,147,9,19])}],"body":{"$":"lam","name":types.symbol("on-location-change!"),"locs":[types.vector(["jsworld/phonegap",6857,147,9,19]),types.vector(["jsworld/phonegap",6877,147,29,13]),types.vector(["jsworld/phonegap",6891,147,43,14])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",6909,148,2,940]),types.vector(["jsworld/phonegap",6928,148,21,70]),types.vector(["jsworld/phonegap",6909,148,2,940])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",6909,148,2,940])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",6909,148,2,940]),types.vector(["jsworld/phonegap",6916,148,9,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7006,150,5,17]),types.vector(["jsworld/phonegap",7024,150,23,230]),types.vector(["jsworld/phonegap",7278,155,23,168]),types.vector(["jsworld/phonegap",7470,158,23,236]),types.vector(["jsworld/phonegap",7730,161,23,117]),types.vector(["jsworld/phonegap",7005,150,4,843])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7005,150,4,843])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7006,150,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7025,150,24,6]),types.vector(["jsworld/phonegap",7033,150,32,7]),types.vector(["jsworld/phonegap",7041,150,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7074,151,26,7]),types.vector(["jsworld/phonegap",7082,151,34,42]),types.vector(["jsworld/phonegap",7159,152,34,11]),types.vector(["jsworld/phonegap",7205,153,34,7]),types.vector(["jsworld/phonegap",7247,154,34,5]),types.vector(["jsworld/phonegap",7073,151,25,180])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7073,151,25,180])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7074,151,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7083,151,35,12]),types.vector(["jsworld/phonegap",7096,151,48,11]),types.vector(["jsworld/phonegap",7108,151,60,15]),types.vector(["jsworld/phonegap",7082,151,34,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7082,151,34,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7083,151,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchPosition"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7279,155,24,6]),types.vector(["jsworld/phonegap",7287,155,32,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,7],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7292,155,37,7]),types.vector(["jsworld/phonegap",7300,155,45,39]),types.vector(["jsworld/phonegap",7385,156,45,11]),types.vector(["jsworld/phonegap",7442,157,45,2]),types.vector(["jsworld/phonegap",7291,155,36,154])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7291,155,36,154])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7292,155,37,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7301,155,46,12]),types.vector(["jsworld/phonegap",7314,155,59,11]),types.vector(["jsworld/phonegap",7326,155,71,12]),types.vector(["jsworld/phonegap",7300,155,45,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7300,155,45,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7301,155,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"clearWatch"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7471,158,24,6]),types.vector(["jsworld/phonegap",7479,158,32,1]),types.vector(["jsworld/phonegap",7481,158,34,3]),types.vector(["jsworld/phonegap",7485,158,38,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,5,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7516,159,26,18]),types.vector(["jsworld/phonegap",7535,159,45,62]),types.vector(["jsworld/phonegap",7643,160,45,61]),types.vector(["jsworld/phonegap",7515,159,25,190])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7515,159,25,190])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7516,159,26,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7536,159,46,14]),types.vector(["jsworld/phonegap",7551,159,61,1]),types.vector(["jsworld/phonegap",7553,159,63,21]),types.vector(["jsworld/phonegap",7575,159,85,21]),types.vector(["jsworld/phonegap",7535,159,45,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7535,159,45,62])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7554,159,64,15]),types.vector(["jsworld/phonegap",7570,159,80,3]),types.vector(["jsworld/phonegap",7553,159,63,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7553,159,63,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7554,159,64,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7576,159,86,15]),types.vector(["jsworld/phonegap",7592,159,102,3]),types.vector(["jsworld/phonegap",7575,159,85,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7575,159,85,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7576,159,86,15])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7644,160,46,13]),types.vector(["jsworld/phonegap",7658,160,60,1]),types.vector(["jsworld/phonegap",7660,160,62,21]),types.vector(["jsworld/phonegap",7682,160,84,21]),types.vector(["jsworld/phonegap",7643,160,45,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7643,160,45,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7661,160,63,15]),types.vector(["jsworld/phonegap",7677,160,79,3]),types.vector(["jsworld/phonegap",7660,160,62,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7660,160,62,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7661,160,63,15])},"rands":[{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7683,160,85,15]),types.vector(["jsworld/phonegap",7699,160,101,3]),types.vector(["jsworld/phonegap",7682,160,84,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7682,160,84,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7683,160,85,15])},"rands":[{"$":"localref","unbox?":false,"pos":11,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7731,161,24,6]),types.vector(["jsworld/phonegap",7739,161,32,1]),types.vector(["jsworld/phonegap",7741,161,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7770,162,26,5]),types.vector(["jsworld/phonegap",7776,162,32,20]),types.vector(["jsworld/phonegap",7797,162,53,48]),types.vector(["jsworld/phonegap",7769,162,25,77])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7769,162,25,77])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7770,162,26,5])},"rands":[{"$":"constant","value":types.symbol("on-location-change!")},{"$":"constant","value":"an error occurred with accessing GPS locations"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",6929,148,22,12]),types.vector(["jsworld/phonegap",6942,148,35,33]),types.vector(["jsworld/phonegap",6983,149,35,14]),types.vector(["jsworld/phonegap",6928,148,21,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",6928,148,21,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",6929,148,22,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",6943,148,36,19]),types.vector(["jsworld/phonegap",6963,148,56,11]),types.vector(["jsworld/phonegap",6942,148,35,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",6942,148,35,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",6943,148,36,19])},"rands":[{"$":"constant","value":"navigator"}]}}},{"$":"constant","value":"phonegap_geo"}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":11,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7926,167,9,18])}],"body":{"$":"lam","name":types.symbol("on-location-change"),"locs":[types.vector(["jsworld/phonegap",7926,167,9,18]),types.vector(["jsworld/phonegap",7945,167,28,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7962,168,2,810]),types.vector(["jsworld/phonegap",7981,168,21,70]),types.vector(["jsworld/phonegap",7962,168,2,810])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7962,168,2,810])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",7962,168,2,810]),types.vector(["jsworld/phonegap",7969,168,9,11])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8059,170,5,17]),types.vector(["jsworld/phonegap",8077,170,23,230]),types.vector(["jsworld/phonegap",8331,175,23,168]),types.vector(["jsworld/phonegap",8523,178,23,107]),types.vector(["jsworld/phonegap",8654,180,23,116]),types.vector(["jsworld/phonegap",8058,170,4,713])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8058,170,4,713])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8059,170,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8078,170,24,6]),types.vector(["jsworld/phonegap",8086,170,32,7]),types.vector(["jsworld/phonegap",8094,170,40,5])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8127,171,26,7]),types.vector(["jsworld/phonegap",8135,171,34,42]),types.vector(["jsworld/phonegap",8212,172,34,11]),types.vector(["jsworld/phonegap",8258,173,34,7]),types.vector(["jsworld/phonegap",8300,174,34,5]),types.vector(["jsworld/phonegap",8126,171,25,180])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8126,171,25,180])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8127,171,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8136,171,35,12]),types.vector(["jsworld/phonegap",8149,171,48,11]),types.vector(["jsworld/phonegap",8161,171,60,15]),types.vector(["jsworld/phonegap",8135,171,34,42])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8135,171,34,42])},"body":{"$":"application","rator":{"$":"toplevel","depth":6,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8136,171,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"watchPosition"}]}}},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8332,175,24,6]),types.vector(["jsworld/phonegap",8340,175,32,2])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[4,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8345,175,37,7]),types.vector(["jsworld/phonegap",8353,175,45,39]),types.vector(["jsworld/phonegap",8438,176,45,11]),types.vector(["jsworld/phonegap",8495,177,45,2]),types.vector(["jsworld/phonegap",8344,175,36,154])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8344,175,36,154])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8345,175,37,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8354,175,46,12]),types.vector(["jsworld/phonegap",8367,175,59,11]),types.vector(["jsworld/phonegap",8379,175,71,12]),types.vector(["jsworld/phonegap",8353,175,45,39])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8353,175,45,39])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8354,175,46,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"clearWatch"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8524,178,24,6]),types.vector(["jsworld/phonegap",8532,178,32,1]),types.vector(["jsworld/phonegap",8534,178,34,3]),types.vector(["jsworld/phonegap",8538,178,38,3])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8569,179,26,13]),types.vector(["jsworld/phonegap",8583,179,40,1]),types.vector(["jsworld/phonegap",8585,179,42,21]),types.vector(["jsworld/phonegap",8607,179,64,21]),types.vector(["jsworld/phonegap",8568,179,25,61])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8568,179,25,61])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8586,179,43,15]),types.vector(["jsworld/phonegap",8602,179,59,3]),types.vector(["jsworld/phonegap",8585,179,42,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8585,179,42,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8586,179,43,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8608,179,65,15]),types.vector(["jsworld/phonegap",8624,179,81,3]),types.vector(["jsworld/phonegap",8607,179,64,21])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8607,179,64,21])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8608,179,65,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8655,180,24,6]),types.vector(["jsworld/phonegap",8663,180,32,1]),types.vector(["jsworld/phonegap",8665,180,34,1])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[4],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8694,181,26,5]),types.vector(["jsworld/phonegap",8700,181,32,19]),types.vector(["jsworld/phonegap",8720,181,52,48]),types.vector(["jsworld/phonegap",8693,181,25,76])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8693,181,25,76])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":23,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8694,181,26,5])},"rands":[{"$":"constant","value":types.symbol("on-location-change")},{"$":"constant","value":"an error occurred with accessing GPS locations"}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7982,168,22,12]),types.vector(["jsworld/phonegap",7995,168,35,33]),types.vector(["jsworld/phonegap",8036,169,35,14]),types.vector(["jsworld/phonegap",7981,168,21,70])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7981,168,21,70])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7982,168,22,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",7996,168,36,19]),types.vector(["jsworld/phonegap",8016,168,56,11]),types.vector(["jsworld/phonegap",7995,168,35,33])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",7995,168,35,33])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",7996,168,36,19])},"rands":[{"$":"constant","value":"navigator"}]}}},{"$":"constant","value":"phonegap_geo"}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":9,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8848,186,9,15])}],"body":{"$":"lam","name":types.symbol("on-sms-receive!"),"locs":[types.vector(["jsworld/phonegap",8848,186,9,15]),types.vector(["jsworld/phonegap",8864,186,25,13]),types.vector(["jsworld/phonegap",8878,186,39,14])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8896,187,2,692]),types.vector(["jsworld/phonegap",8907,187,13,62]),types.vector(["jsworld/phonegap",8896,187,2,692])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8896,187,2,692])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8896,187,2,692]),types.vector(["jsworld/phonegap",8903,187,9,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2,3],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8977,188,5,17]),types.vector(["jsworld/phonegap",8995,188,23,166]),types.vector(["jsworld/phonegap",9185,192,23,4]),types.vector(["jsworld/phonegap",9259,193,23,327]),types.vector(["jsworld/phonegap",8976,188,4,611])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8976,188,4,611])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8977,188,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",8996,188,24,6]),types.vector(["jsworld/phonegap",9004,188,32,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,6],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9039,189,26,7]),types.vector(["jsworld/phonegap",9047,189,34,32]),types.vector(["jsworld/phonegap",9114,190,34,3]),types.vector(["jsworld/phonegap",9152,191,34,7]),types.vector(["jsworld/phonegap",9038,189,25,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9038,189,25,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9039,189,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9048,189,35,12]),types.vector(["jsworld/phonegap",9061,189,48,3]),types.vector(["jsworld/phonegap",9065,189,52,13]),types.vector(["jsworld/phonegap",9047,189,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9047,189,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9048,189,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"addListener"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"toplevel","depth":3,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9185,192,23,4])},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",9260,193,24,6]),types.vector(["jsworld/phonegap",9268,193,32,1]),types.vector(["jsworld/phonegap",9270,193,34,13]),types.vector(["jsworld/phonegap",9284,193,48,10])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9321,194,25,264]),types.vector(["jsworld/phonegap",9335,194,39,31]),types.vector(["jsworld/phonegap",9404,195,36,28]),types.vector(["jsworld/phonegap",9321,194,25,264])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9321,194,25,264])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",9321,194,25,264]),types.vector(["jsworld/phonegap",9328,194,32,6]),types.vector(["jsworld/phonegap",9400,195,32,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[2,3,4,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9461,196,26,18]),types.vector(["jsworld/phonegap",9480,196,45,29]),types.vector(["jsworld/phonegap",9555,197,45,28]),types.vector(["jsworld/phonegap",9460,196,25,124])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9460,196,25,124])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":15,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9461,196,26,18])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9481,196,46,14]),types.vector(["jsworld/phonegap",9496,196,61,1]),types.vector(["jsworld/phonegap",9498,196,63,6]),types.vector(["jsworld/phonegap",9505,196,70,3]),types.vector(["jsworld/phonegap",9480,196,45,29])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9480,196,45,29])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9556,197,46,13]),types.vector(["jsworld/phonegap",9570,197,60,1]),types.vector(["jsworld/phonegap",9572,197,62,6]),types.vector(["jsworld/phonegap",9579,197,69,3]),types.vector(["jsworld/phonegap",9555,197,45,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9555,197,45,28])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":9,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":10,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9336,194,40,15]),types.vector(["jsworld/phonegap",9352,194,56,13]),types.vector(["jsworld/phonegap",9335,194,39,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9335,194,39,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9336,194,40,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9405,195,37,15]),types.vector(["jsworld/phonegap",9421,195,53,10]),types.vector(["jsworld/phonegap",9404,195,36,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9404,195,36,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9405,195,37,15])},"rands":[{"$":"localref","unbox?":false,"pos":8,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8908,187,14,6]),types.vector(["jsworld/phonegap",8915,187,21,53]),types.vector(["jsworld/phonegap",8907,187,13,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8907,187,13,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8908,187,14,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8916,187,22,12]),types.vector(["jsworld/phonegap",8929,187,35,32]),types.vector(["jsworld/phonegap",8962,187,68,5]),types.vector(["jsworld/phonegap",8915,187,21,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8915,187,21,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8916,187,22,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",8930,187,36,19]),types.vector(["jsworld/phonegap",8950,187,56,10]),types.vector(["jsworld/phonegap",8929,187,35,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",8929,187,35,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",8930,187,36,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Sms"}]}}}]}}}]}}}}},{"$":"def-values","ids":[{"$":"toplevel","depth":0,"pos":8,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9660,201,9,14])}],"body":{"$":"lam","name":types.symbol("on-sms-receive"),"locs":[types.vector(["jsworld/phonegap",9660,201,9,14]),types.vector(["jsworld/phonegap",9675,201,24,13])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[0],"closure-types":[types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9692,202,2,596]),types.vector(["jsworld/phonegap",9703,202,13,62]),types.vector(["jsworld/phonegap",9692,202,2,596])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9692,202,2,596])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",9692,202,2,596]),types.vector(["jsworld/phonegap",9699,202,9,3])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[1,2],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9773,203,5,17]),types.vector(["jsworld/phonegap",9791,203,23,166]),types.vector(["jsworld/phonegap",9981,207,23,4]),types.vector(["jsworld/phonegap",10055,208,23,231]),types.vector(["jsworld/phonegap",9772,203,4,515])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9772,203,4,515])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":18,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9773,203,5,17])},"rands":[{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",9792,203,24,6]),types.vector(["jsworld/phonegap",9800,203,32,7])],"flags":[],"num-params":1,"param-types":[types.symbol("val")],"rest?":false,"closure-map":[3,5],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9835,204,26,7]),types.vector(["jsworld/phonegap",9843,204,34,32]),types.vector(["jsworld/phonegap",9910,205,34,3]),types.vector(["jsworld/phonegap",9948,206,34,7]),types.vector(["jsworld/phonegap",9834,204,25,122])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9834,204,25,122])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":22,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9835,204,26,7])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9844,204,35,12]),types.vector(["jsworld/phonegap",9857,204,48,3]),types.vector(["jsworld/phonegap",9861,204,52,13]),types.vector(["jsworld/phonegap",9843,204,34,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9843,204,34,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9844,204,35,12])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false},{"$":"constant","value":"addListener"}]}}},{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false}]}}}},{"$":"toplevel","depth":3,"pos":16,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9981,207,23,4])},{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",10056,208,24,6]),types.vector(["jsworld/phonegap",10064,208,32,1]),types.vector(["jsworld/phonegap",10066,208,34,13]),types.vector(["jsworld/phonegap",10080,208,48,10])],"flags":[],"num-params":3,"param-types":[types.symbol("val"),types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",10117,209,25,168]),types.vector(["jsworld/phonegap",10131,209,39,31]),types.vector(["jsworld/phonegap",10200,210,36,28]),types.vector(["jsworld/phonegap",10117,209,25,168])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",10117,209,25,168])},"body":{"$":"application","rator":{"$":"lam","name":types.EMPTY,"locs":[types.vector(["jsworld/phonegap",10117,209,25,168]),types.vector(["jsworld/phonegap",10124,209,32,6]),types.vector(["jsworld/phonegap",10196,210,32,3])],"flags":[],"num-params":2,"param-types":[types.symbol("val"),types.symbol("val")],"rest?":false,"closure-map":[3,4],"closure-types":[types.symbol("val/ref"),types.symbol("val/ref")],"max-let-depth":0,"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",10257,211,26,13]),types.vector(["jsworld/phonegap",10271,211,40,1]),types.vector(["jsworld/phonegap",10273,211,42,6]),types.vector(["jsworld/phonegap",10280,211,49,3]),types.vector(["jsworld/phonegap",10256,211,25,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",10256,211,25,28])},"body":{"$":"application","rator":{"$":"localref","unbox?":false,"pos":3,"clear":false,"other-clears?":false,"flonum?":false},"rands":[{"$":"localref","unbox?":false,"pos":4,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":5,"clear":false,"other-clears?":false,"flonum?":false},{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",10132,209,40,15]),types.vector(["jsworld/phonegap",10148,209,56,13]),types.vector(["jsworld/phonegap",10131,209,39,31])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",10131,209,39,31])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",10132,209,40,15])},"rands":[{"$":"localref","unbox?":false,"pos":6,"clear":false,"other-clears?":false,"flonum?":false}]}}},{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",10201,210,37,15]),types.vector(["jsworld/phonegap",10217,210,53,10]),types.vector(["jsworld/phonegap",10200,210,36,28])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",10200,210,36,28])},"body":{"$":"application","rator":{"$":"toplevel","depth":3,"pos":17,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",10201,210,37,15])},"rands":[{"$":"localref","unbox?":false,"pos":7,"clear":false,"other-clears?":false,"flonum?":false}]}}}]}}}}]}}}},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9704,202,14,6]),types.vector(["jsworld/phonegap",9711,202,21,53]),types.vector(["jsworld/phonegap",9703,202,13,62])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9703,202,13,62])},"body":{"$":"application","rator":{"$":"toplevel","depth":2,"pos":19,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9704,202,14,6])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9712,202,22,12]),types.vector(["jsworld/phonegap",9725,202,35,32]),types.vector(["jsworld/phonegap",9758,202,68,5]),types.vector(["jsworld/phonegap",9711,202,21,53])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9711,202,21,53])},"body":{"$":"application","rator":{"$":"toplevel","depth":4,"pos":20,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9712,202,22,12])},"rands":[{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-application-position-key")},"val":{"$":"constant","value":types.list([types.vector(["jsworld/phonegap",9726,202,36,19]),types.vector(["jsworld/phonegap",9746,202,56,10]),types.vector(["jsworld/phonegap",9725,202,35,32])])},"body":{"$":"with-cont-mark","key":{"$":"constant","value":types.symbol("moby-stack-record-continuation-mark-key")},"val":{"$":"constant","value":types.vector(["jsworld/phonegap",9725,202,35,32])},"body":{"$":"application","rator":{"$":"toplevel","depth":5,"pos":21,"const?":false,"ready?":false,"loc":types.vector(["jsworld/phonegap",9726,202,36,19])},"rands":[{"$":"constant","value":"phonegap"}]}}},{"$":"constant","value":"Sms"}]}}}]}}}]}}}}}]}}, 'provides': ["on-shake","on-sms-receive","on-sms-receive!","on-shake!","on-location-change","on-location-change!","on-acceleration!","on-acceleration"]}; diff --git a/servlet-htdocs/support.js b/servlet-htdocs/support.js index e2887ad..13df192 100644 --- a/servlet-htdocs/support.js +++ b/servlet-htdocs/support.js @@ -609,7 +609,7 @@ var helpers = {}; var format = function(formatStr, args, functionName) { var throwFormatError = function() { - functionName = functionName || '#'; + functionName = functionName || '#'; var matches = formatStr.match(new RegExp('~[sSaA]', 'g')); var expectedNumberOfArgs = matches == null ? 0 : matches.length; var errorStrBuffer = [functionName + ': format string requires ' + expectedNumberOfArgs @@ -8660,7 +8660,7 @@ var liftToplevelToFunctionValue = function(primitiveF, return this === other; } lifted.toWrittenString = function(cache) { - return "#"; + return "#"; }; lifted.toDisplayedString = lifted.toWrittenString; lifted.procedureArity = procedureArityDescription; @@ -8740,9 +8740,9 @@ var ClosureValue = function(name, locs, numParams, paramTypes, isRest, closureVa ClosureValue.prototype.toString = function() { if (this.name !== Empty.EMPTY) { - return helpers.format("#", [this.name]); + return helpers.format("#", [this.name]); } else { - return "#"; + return "#"; } }; @@ -8770,9 +8770,9 @@ var ContinuationClosureValue = function(vstack, cstack) { ContinuationClosureValue.prototype.toString = function() { if (this.name !== Empty.EMPTY) { - return helpers.format("#", [this.name]); + return helpers.format("#", [this.name]); } else { - return "#"; + return "#"; } }; @@ -8951,21 +8951,21 @@ var PrimProc = function(name, numParams, isRest, assignsToValueRegister, impl) { }; PrimProc.prototype.toString = function() { - return ("#"); + return ("#"); }; PrimProc.prototype.toWrittenString = function(cache) { - return ("#"); + return ("#"); }; PrimProc.prototype.toDisplayedString = function(cache) { - return ("#"); + return ("#"); }; PrimProc.prototype.toDomNode = function(cache) { var div = document.createElement("span"); - div.appendChild(document.createTextNode("#")); + div.appendChild(document.createTextNode("#")); return div; }; @@ -8978,16 +8978,16 @@ var CasePrimitive = function(name, cases) { CasePrimitive.prototype.toDomNode = function(cache) { var div = document.createElement("span"); - div.appendChild(document.createTextNode("#")); + div.appendChild(document.createTextNode("#")); return div; }; CasePrimitive.prototype.toWrittenString = function(cache) { - return ("#"); + return ("#"); }; CasePrimitive.prototype.toDisplayedString = function(cache) { - return ("#"); + return ("#"); }; @@ -14486,7 +14486,7 @@ PRIMITIVES['/'] = } raise( types.incompleteExn(types.exnFailContractDivisionByZero, new types.Message([new types.ColoredPart('/', func), - ": division by ", + ": cannot divide by ", new types.ColoredPart("zero", locationList.first())]), []) ); @@ -16223,7 +16223,7 @@ PRIMITIVES['make-string'] = false, false, function(aState, n, c) { check(aState, n, isNatural, 'make-string', 'non-negative exact integer', 1, arguments); - check(aState, c, isChar, 'make-string', 'char', 2, arguments); + check(aState, c, isChar, 'make-string', 'character', 2, arguments); var ret = []; for (var i = 0; jsnums.lessThan(i, n); i++) { @@ -16255,7 +16255,7 @@ PRIMITIVES['string'] = 0, true, false, function(aState, chars) { - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'string', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'string', 'character', i+1, chars);}); var ret = []; for (var i = 0; i < chars.length; i++) { @@ -16579,7 +16579,7 @@ PRIMITIVES['list->string'] = 1, false, false, function(aState, lst) { - checkListOf(aState, lst, isChar, 'list->string', 'char', 1); + checkListOf(aState, lst, isChar, 'list->string', 'character', 1); var ret = []; while( !lst.isEmpty() ) { @@ -16806,7 +16806,7 @@ PRIMITIVES['string-set!'] = check(aState, str, function(x) { return isString(x) && typeof x != 'string'; }, 'string-set!', 'mutable string', 1, arguments); check(aState, k, isNatural, 'string-set!', 'non-negative exact integer', 2, arguments); - check(aState, c, isChar, 'string-set!', 'char', 3, arguments); + check(aState, c, isChar, 'string-set!', 'character', 3, arguments); if ( jsnums.greaterThanOrEqual(k, str.length) ) { var msg = ('string-set!: index ' + n + ' out of range ' + @@ -16826,7 +16826,7 @@ PRIMITIVES['string-fill!'] = function(aState, str, c) { check(aState, str, function(x) { return isString(x) && typeof x != 'string'; }, 'string-fill!', 'mutable string', 1, arguments); - check(aState, c, isChar, 'string-fill!', 'char', 2, arguments); + check(aState, c, isChar, 'string-fill!', 'character', 2, arguments); for (var i = 0; i < str.length; i++) { str.set(i, c.val); @@ -17240,7 +17240,7 @@ PRIMITIVES['char=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) {return c1.val === c2.val;}); }); @@ -17253,7 +17253,7 @@ PRIMITIVES['char?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char>?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char>?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) {return c1.val > c2.val;}); }); @@ -17279,7 +17279,7 @@ PRIMITIVES['char<=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char<=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char<=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) {return c1.val <= c2.val;}); }); @@ -17292,7 +17292,7 @@ PRIMITIVES['char>=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char>=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char>=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) {return c1.val >= c2.val;}); }); @@ -17305,7 +17305,7 @@ PRIMITIVES['char-ci=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) { @@ -17321,7 +17321,7 @@ PRIMITIVES['char-ci?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci>?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci>?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) { @@ -17353,7 +17353,7 @@ PRIMITIVES['char-ci<=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci<=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci<=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) { @@ -17369,7 +17369,7 @@ PRIMITIVES['char-ci>=?'] = function(aState, char1, char2, chars) { chars.unshift(char2); chars.unshift(char1); - arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci>=?', 'char', i+1, chars);}); + arrayEach(chars, function(c, i) {check(aState, c, isChar, 'char-ci>=?', 'character', i+1, chars);}); return compare(chars, function(c1, c2) { @@ -17383,7 +17383,7 @@ PRIMITIVES['char-alphabetic?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-alphabetic?', 'char', 1); + check(aState, c, isChar, 'char-alphabetic?', 'character', 1); return isAlphabeticString(c.val); }); @@ -17393,7 +17393,7 @@ PRIMITIVES['char-numeric?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-numeric?', 'char', 1); + check(aState, c, isChar, 'char-numeric?', 'character', 1); return (c.val >= '0' && c.val <= '9'); }); @@ -17403,7 +17403,7 @@ PRIMITIVES['char-whitespace?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-whitespace?', 'char', 1); + check(aState, c, isChar, 'char-whitespace?', 'character', 1); return isWhitespaceString(c.val); }); @@ -17413,7 +17413,7 @@ PRIMITIVES['char-upper-case?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-upper-case?', 'char', 1); + check(aState, c, isChar, 'char-upper-case?', 'character', 1); return (isAlphabeticString(c.val) && c.val.toUpperCase() === c.val); }); @@ -17423,7 +17423,7 @@ PRIMITIVES['char-lower-case?'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-lower-case?', 'char', 1); + check(aState, c, isChar, 'char-lower-case?', 'character', 1); return (isAlphabeticString(c.val) && c.val.toLowerCase() === c.val); }); @@ -17433,7 +17433,7 @@ PRIMITIVES['char->integer'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char->integer', 'char', 1); + check(aState, c, isChar, 'char->integer', 'character', 1); return c.val.charCodeAt(0); }); @@ -17464,7 +17464,7 @@ PRIMITIVES['char-upcase'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-upcase', 'char', 1); + check(aState, c, isChar, 'char-upcase', 'character', 1); return types['char']( c.val.toUpperCase() ); }); @@ -17474,7 +17474,7 @@ PRIMITIVES['char-downcase'] = 1, false, false, function(aState, c) { - check(aState, c, isChar, 'char-downcase', 'char', 1); + check(aState, c, isChar, 'char-downcase', 'character', 1); return types['char']( c.val.toLowerCase() ); }); @@ -17732,7 +17732,7 @@ PRIMITIVES['circle'] = false, false, function(aState, aRadius, aStyle, aColor) { check(aState, aRadius, isNonNegativeReal, "circle", "non-negative number", 1, arguments); - check(aState, aStyle, isMode, "circle", "style", 2, arguments); + check(aState, aStyle, isMode, "circle", 'style ("solid" or "outline")', 2, arguments); check(aState, aColor, isColor, "circle", "color", 3, arguments); @@ -17760,7 +17760,7 @@ PRIMITIVES['star'] = check(aState, inner, isNonNegativeReal, "star", "non-negative number", 3, arguments); - check(aState, m, isMode, "star", "style", 4, arguments); + check(aState, m, isMode, "star", 'style ("solid" or "outline")', 4, arguments); check(aState, c, isColor, "star", "color", 5, arguments); if (colorDb.get(c)) { c = colorDb.get(c); @@ -17778,7 +17778,7 @@ PRIMITIVES['star'] = function(aState, sideLength, mode, color) { check(aState, sideLength, isNonNegativeReal, "star", "non-negative number", 1, arguments); - check(aState, mode, isMode, "star", "style", 2, arguments); + check(aState, mode, isMode, "star", 'style ("solid" or "outline")', 2, arguments); check(aState, color, isColor, "star", "color", 3, arguments); if (colorDb.get(color)) { color = colorDb.get(color); @@ -17803,7 +17803,7 @@ new PrimProc('radial-star', "radial-star", "positive number", 2, arguments); check(aState, anInner, function(x) { return isReal(x) && jsnums.greaterThan(x, 0); }, "radial-star", "positive number", 3, arguments); - check(aState, aStyle, isMode, "radial-star", "style", 4, arguments); + check(aState, aStyle, isMode, "radial-star", 'style ("solid" or "outline")', 4, arguments); check(aState, aColor, isColor, "radial-star", "color", 5, arguments); if (colorDb.get(aColor)) { @@ -17824,7 +17824,7 @@ PRIMITIVES['nw:rectangle'] = function(aState, w, h, s, c) { check(aState, w, isNonNegativeReal, "nw:rectangle", "non-negative number", 1, arguments); check(aState, h, isNonNegativeReal, "nw:rectangle", "non-negative number", 2, arguments); - check(aState, s, isMode, "nw:rectangle", "style", 3, arguments); + check(aState, s, isMode, "nw:rectangle", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "nw:rectangle", "color", 4, arguments); if (colorDb.get(c)) { @@ -17844,7 +17844,7 @@ PRIMITIVES['rectangle'] = function(aState, w, h, s, c) { check(aState, w, isNonNegativeReal, "rectangle", "non-negative number", 1, arguments); check(aState, h, isNonNegativeReal, "rectangle", "non-negative number", 2, arguments); - check(aState, s, isMode, "rectangle", "style", 3, arguments); + check(aState, s, isMode, "rectangle", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "rectangle", "color", 4, arguments); if (colorDb.get(c)) { @@ -17862,7 +17862,7 @@ new PrimProc('regular-polygon', function(aState, length, count, s, c) { check(aState, length, isNonNegativeReal, "regular-polygon", "non-negative number", 1, arguments); check(aState, count, isSideCount, "regular-polygon", "positive integer greater than or equal to 3", 2, arguments); - check(aState, s, isMode, "regular-polygon", "style", 3, arguments); + check(aState, s, isMode, "regular-polygon", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "regular-polygon", "color", 4, arguments); if (colorDb.get(c)) { @@ -17883,7 +17883,7 @@ new PrimProc('star-polygon', check(aState, length, isNonNegativeReal, "star-polygon", "non-negative number", 1, arguments); check(aState, count, isSideCount, "star-polygon", "positive integer greater than or equal to 3", 2, arguments); check(aState, step, isStepCount, "star-polygon", "positive integer greater than or equal to 1", 3, arguments); - check(aState, s, isMode, "star-polygon", "style", 4, arguments); + check(aState, s, isMode, "star-polygon", 'style ("solid" or "outline")', 4, arguments); check(aState, c, isColor, "star-polygon", "color", 5, arguments); if (colorDb.get(c)) { @@ -17903,7 +17903,7 @@ new PrimProc('rhombus', function(aState, l, a, s, c) { check(aState, l, isNonNegativeReal, "rhombus", "non-negative number", 1, arguments); check(aState, a, isNonNegativeReal, "rhombus", "non-negative number", 2, arguments); - check(aState, s, isMode, "rhombus", "style", 3, arguments); + check(aState, s, isMode, "rhombus", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "rhombus", "color", 4, arguments); if (colorDb.get(c)) { @@ -17918,7 +17918,7 @@ new PrimProc('square', false, false, function(aState, l, s, c) { check(aState, l, isNonNegativeReal, "square", "non-negative number", 1, arguments); - check(aState, s, isMode, "square", "style", 2, arguments); + check(aState, s, isMode, "square", 'style ("solid" or "outline")', 2, arguments); check(aState, c, isColor, "square", "color", 3, arguments); if (colorDb.get(c)) { @@ -17933,7 +17933,7 @@ PRIMITIVES['triangle'] = false, false, function(aState, s, m, c) { check(aState, s, isNonNegativeReal, "triangle", "non-negative number", 1, arguments); - check(aState, m, isMode, "triangle", "style", 2, arguments); + check(aState, m, isMode, "triangle", 'style ("solid" or "outline")', 2, arguments); check(aState, c, isColor, "triangle", "color", 3, arguments); if (colorDb.get(c)) { c = colorDb.get(c); @@ -17952,7 +17952,7 @@ new PrimProc('right-triangle', function(aState, side1, side2, s, c) { check(aState, side1, isNonNegativeReal, "right-triangle", "non-negative number", 1, arguments); check(aState, side2, isNonNegativeReal, "right-triangle", "non-negative number", 2, arguments); - check(aState, s, isMode, "right-triangle", "style", 3, arguments); + check(aState, s, isMode, "right-triangle", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "right-triangle", "color", 4, arguments); if (colorDb.get(c)) { c = colorDb.get(c); @@ -17968,7 +17968,7 @@ new PrimProc('isosceles-triangle', function(aState, side, angle, s, c) { check(aState, side, isNonNegativeReal, "isosceles-triangle", "non-negative number", 1, arguments); check(aState, angle, isAngle, "isosceles-triangle", "finite real number between 0 and 360", 2, arguments); - check(aState, s, isMode, "isosceles-triangle", "style", 3, arguments); + check(aState, s, isMode, "isosceles-triangle", 'style ("solid" or "outline")', 3, arguments); check(aState, c, isColor, "isosceles-triangle", "color", 4, arguments); if (colorDb.get(c)) { c = colorDb.get(c); @@ -18365,7 +18365,7 @@ new PrimProc('text/font', check(aState, aFace, function(x) {return isString(x) || !x;}, "text/font", "face", 4, arguments); check(aState, aFamily, isFontFamily, "text/font", "family", 5, arguments); - check(aState, aStyle, isFontStyle, "text/font", "style", 6, arguments); + check(aState, aStyle, isFontStyle, "text/font", 'style ("solid" or "outline")', 6, arguments); check(aState, aWeight, isFontWeight, "text/font", "weight", 7, arguments); check(aState, aUnderline,isBoolean, "text/font", "underline?",8, arguments); @@ -18732,7 +18732,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // false, false, // function(aRadius, aStyle, aColor) { // check(aState, aRadius, isNonNegativeReal, "circle", "non-negative number", 1, arguments); -// check(aState, aStyle, isStyle, "circle", "style", 2, arguments); +// check(aState, aStyle, isStyle, "circle", 'style ("solid" or "outline")', 2, arguments); // check(aState, aColor, isColor, "circle", "color", 3, arguments); @@ -18754,7 +18754,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // "star", "positive number", 2, arguments); // check(aState, anInner, function(x) { return isReal(x) && jsnums.greaterThan(x, 0); }, // "star", "positive number", 2, arguments); -// check(aState, aStyle, isStyle, "star", "style", 4, arguments); +// check(aState, aStyle, isStyle, "star", 'style ("solid" or "outline")', 4, arguments); // check(aState, aColor, isColor, "star", "color", 5, arguments); // if (colorDb.get(aColor)) { @@ -18775,7 +18775,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // function(w, h, s, c) { // check(aState, w, isNonNegativeReal, "nw:rectangle", "non-negative number", 1, arguments); // check(aState, h, isNonNegativeReal, "nw:rectangle", "non-negative number", 2, arguments); -// check(aState, s, isStyle, "nw:rectangle", "style", 3, arguments); +// check(aState, s, isStyle, "nw:rectangle", 'style ("solid" or "outline")', 3, arguments); // check(aState, c, isColor, "nw:rectangle", "color", 4, arguments); // if (colorDb.get(c)) { @@ -18795,7 +18795,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // function(w, h, s, c) { // check(aState, w, isNonNegativeReal, "rectangle", "non-negative number", 1, arguments); // check(aState, h, isNonNegativeReal, "rectangle", "non-negative number", 2, arguments); -// check(aState, s, isStyle, "rectangle", "style", 3, arguments); +// check(aState, s, isStyle, "rectangle", 'style ("solid" or "outline")', 3, arguments); // check(aState, c, isColor, "rectangle", "color", 4, arguments); // if (colorDb.get(c)) { @@ -18813,7 +18813,7 @@ PRIMITIVES['step-count?'] = new PrimProc('step-count?', 1, false, false, // false, false, // function(r, s, c) { // check(aState, r, isNonNegativeReal, "triangle", "non-negative number", 1, arguments); -// check(aState, s, isStyle, "triangle", "style", 2, arguments); +// check(aState, s, isStyle, "triangle", 'style ("solid" or "outline")', 2, arguments); // check(aState, c, isColor, "triangle", "color", 3, arguments); // if (colorDb.get(c)) { // c = colorDb.get(c); @@ -19028,7 +19028,7 @@ PRIMITIVES['on-tick'] = 1, false, false, function(aState, f) { - check(aState, f, isFunction, "on-tick", "procedure", 1); + check(aState, f, isFunction, "on-tick", "function name", 1); return new OnTickBang(f, new PrimProc('', 1, false, false, function(aState, w) { return types.effectDoNothing(); }), @@ -19038,7 +19038,7 @@ PRIMITIVES['on-tick'] = 2, false, false, function(aState, f, aDelay) { - check(aState, f, isFunction, "on-tick", "procedure", 1, arguments); + check(aState, f, isFunction, "on-tick", "function name", 1, arguments); check(aState, aDelay, isNonNegativeReal, "on-tick", "non-negative number", 2, arguments); return new OnTickBang(f, new PrimProc('', 1, false, false, @@ -19054,16 +19054,16 @@ PRIMITIVES['on-tick!'] = 2, false, false, function(aState, handler, effectHandler) { - check(aState, handler, isFunction, "on-tick!", "procedure", 1, arguments); - check(aState, effectHandler, isFunction, "on-tick!","procedure", 2, arguments); + check(aState, handler, isFunction, "on-tick!", "function name", 1, arguments); + check(aState, effectHandler, isFunction, "on-tick!","function name", 2, arguments); return new OnTickBang(handler, effectHandler, DEFAULT_TICK_DELAY); }), new PrimProc('on-tick!', 3, false, false, function(aState, handler, effectHandler, aDelay) { - check(aState, handler, isFunction, "on-tick!", "procedure", 1, arguments); - check(aState, effectHandler, isFunction, "on-tick!","procedure", 2, arguments); + check(aState, handler, isFunction, "on-tick!", "function name", 1, arguments); + check(aState, effectHandler, isFunction, "on-tick!","function name", 2, arguments); check(aState, aDelay, isNonNegativeReal, "on-tick!", "non-negative number", 3, arguments); return new OnTickBang(handler, effectHandler, aDelay); }) ]); @@ -19114,7 +19114,7 @@ PRIMITIVES['on-redraw'] = 1, false, false, function(aState, f) { - check(aState, f, isFunction, 'on-redraw', 'procedure', 1); + check(aState, f, isFunction, 'on-redraw', "function name", 1); return new (WorldConfigOption.extend({ init: function() { this._super('on-redraw'); @@ -19132,7 +19132,7 @@ PRIMITIVES['to-draw'] = 1, false, false, function(aState, f) { - check(aState, f, isFunction, 'to-draw', 'procedure', 1); + check(aState, f, isFunction, 'to-draw', "function name", 1); return new (WorldConfigOption.extend({ init: function() { this._super('on-redraw'); @@ -19153,7 +19153,7 @@ PRIMITIVES['on-draw'] = 1, false, false, function(aState, domHandler) { - check(aState, domHandler, isFunction, 'on-draw', 'procedure', 1); + check(aState, domHandler, isFunction, 'on-draw', "function name", 1); return new (WorldConfigOption.extend({ init: function() { this._super('on-draw'); @@ -19167,8 +19167,8 @@ PRIMITIVES['on-draw'] = 2, false, false, function(aState, domHandler, styleHandler) { - check(aState, domHandler, isFunction, 'on-draw', 'procedure', 1, arguments); - check(aState, styleHandler, isFunction, 'on-draw', 'procedure', 2, arguments); + check(aState, domHandler, isFunction, 'on-draw', "function name", 1, arguments); + check(aState, styleHandler, isFunction, 'on-draw', "function name", 2, arguments); return new (WorldConfigOption.extend({ init: function() { this._super('on-draw'); @@ -19240,8 +19240,8 @@ PRIMITIVES['js-div'] = var jsButtonBang = function(funName) { return function(aState, worldUpdateF, effectF, attribList) { - check(aState, worldUpdateF, isFunction, funName, 'procedure', 1); - check(aState, effectF, isFunction, funName, 'procedure', 2); + check(aState, worldUpdateF, isFunction, funName, "function name", 1); + check(aState, effectF, isFunction, funName, "function name", 2); checkListOf(undefined, attribList, isAssocList, funName, '(listof X Y)', 3); var attribs = attribList ? assocListToHash(attribList) : {}; @@ -19273,7 +19273,7 @@ PRIMITIVES['js-button!'] = var jsInput = function(type, updateF, attribList) { check(aState, type, isString, 'js-input', 'string', 1); - check(aState, updateF, isFunction, 'js-input', 'procedure', 2); + check(aState, updateF, isFunction, 'js-input', "function name", 2); checkListOf(undefined, attribList, isAssocList, 'js-input', '(listof X Y)', 3); var attribs = attribList ? assocListToHash(attribList) : {}; @@ -19329,7 +19329,7 @@ PRIMITIVES['js-text'] = var jsSelect = function(optionList, updateF, attribList) { checkListOf(undefined, optionList, isString, 'js-select', 'listof string', 1); - check(aState, updateF, isFunction, 'js-select', 'procedure', 2); + check(aState, updateF, isFunction, 'js-select', "function name", 2); checkListOf(undefined, attribList, isAssocList, 'js-select', '(listof X Y)', 3); var attribs = attribList ? assocListToHash(attribList) : {}; @@ -19347,45 +19347,6 @@ PRIMITIVES['js-select'] = new PrimProc('js-select', 3, false, false, function(aState, optionList, updateF, attribList) { return jsSelect(optionList, updateF, attribList); })]); -/* -PRIMITIVES['big-bang'] = -PRIMITIVES['js-big-bang'] = - new PrimProc('js-big-bang', - 1, - true, true, - function(aState, initW, handlers) { - arrayEach(handlers, - function(x, i) { - check(aState, x, function(y) { return isWorldConfigOption(y) || isList(y) || types.isWorldConfig(y); }, - 'js-big-bang', 'handler or attribute list', i+2); - }); - var unwrappedConfigs = - helpers.map(function(x) { - if ( isWorldConfigOption(x) ) { - return function(config) { return x.configure(config); }; - } - else { - return x; - } - }, - handlers); - aState.v = PAUSE(function(restarter, caller) { - var bigBangController; - var onBreak = function() { - bigBangController.breaker(); - } - aState.addBreakRequestedListener(onBreak); - bigBangController = jsworld.MobyJsworld.bigBang(initW, - aState.getToplevelNodeHook()(), - unwrappedConfigs, - caller, - function(v) { - aState.removeBreakRequestedListener(onBreak); - restarter(v); - }); - }) - }); -*/ PRIMITIVES['big-bang'] = PRIMITIVES['js-big-bang'] = new PrimProc('big-bang', @@ -19395,7 +19356,7 @@ PRIMITIVES['js-big-bang'] = arrayEach(handlers, function(x, i) { check(aState, x, function(y) { return isWorldConfigOption(y) || isList(y) || types.isWorldConfig(y); }, - 'big-bang', 'handler or attribute list', i+2, [aState, initW].concat(handlers)); + 'big-bang', 'handler', i+2, [aState, initW].concat(handlers)); }); var unwrappedConfigs = helpers.map(function(x) { @@ -19478,7 +19439,7 @@ PRIMITIVES['make-world-config'] = true, false, function(aState, startup, shutdown, handlers) { var allArgs = [startup, shutdown].concat(handlers); - check(aState, startup, isFunction, 'make-world-config', 'procedure', 1, allArgs); + check(aState, startup, isFunction, 'make-world-config', "function name", 1, allArgs); check(aState, shutdown, procArityContains(1), 'make-world-config', 'procedure (arity 1)', 2, allArgs); arrayEach(handlers, function(x, i) { check(aState, x, isFunction, 'make-world-config', 'handler', i+3, allArgs); }); @@ -19505,7 +19466,7 @@ PRIMITIVES['make-effect-type'] = check(aState, superType, function(x) { return x === false || types.isEffectType(x) }, 'make-effect-type', 'effect type or #f', 2, userArgs); check(aState, fieldCnt, isNatural, 'make-effect-type', 'exact non-negative integer', 3, userArgs); - check(aState, impl, isFunction, 'make-effect-type', 'procedure', 4, userArgs); + check(aState, impl, isFunction, 'make-effect-type', "function name", 4, userArgs); // checkListOf(aState, handlerIndices, isNatural, 'make-effect-type', 'exact non-negative integer', 5); check(aState, guard, function(x) { return x === false || isFunction(x); }, 'make-effect-type', 'procedure or #f', 6, userArgs); // Check the number of arguments on the guard @@ -19569,7 +19530,7 @@ PRIMITIVES['make-render-effect-type'] = check(aState, superType, function(x) { return x === false || types.isEffectType(x) }, 'make-render-effect-type', 'effect type or #f', 2, userArgs); check(aState, fieldCnt, isNatural, 'make-render-effect-type', 'exact non-negative integer', 3, userArgs); - check(aState, impl, isFunction, 'make-render-effect-type', 'procedure', 4, userArgs); + check(aState, impl, isFunction, 'make-render-effect-type', "function name", 4, userArgs); check(aState, guard, function(x) { return x === false || isFunction(x); }, 'make-render-effect-type', 'procedure or #f', 6, userArgs); // Check the number of arguments on the guard var numberOfGuardArgs = fieldCnt + 1 + (superType ? superType.numberOfArgs : 0); @@ -19721,7 +19682,7 @@ PRIMITIVES['procedure->cps-js-fun'] = 1, false, false, function(aState, proc) { - check(aState, proc, isFunction, 'procedure->cps-js-fun', 'procedure', 1); + check(aState, proc, isFunction, 'procedure->cps-js-fun', "function name", 1); var caller = makeCaller(aState); return types.jsObject(proc.name + ' (cps)', function() { @@ -19738,7 +19699,7 @@ PRIMITIVES['procedure->void-js-fun'] = 1, false, false, function(aState, proc) { - check(aState, proc, isFunction, 'procedure->void-js-fun', 'procedure', 1); + check(aState, proc, isFunction, 'procedure->void-js-fun', "function name", 1); var caller = makeCaller(aState); return types.jsObject(proc.name + ' (void)', function() { @@ -20821,17 +20782,20 @@ var selectProcedureByArity = function(aState, n, procValue, operands) { var argStr = getArgStr('; arguments were:'); var positionStack = state.captureCurrentContinuationMarks(aState).ref(types.symbol('moby-application-position-key')); + console.log("positionStack is ", positionStack); var locationList = positionStack[positionStack.length - 1]; - var exprLoc = positionStack[0].first().elts; - var argColoredParts = getArgColoredParts(locationList.rest()); - - var openParen = [exprLoc[0], exprLoc[1], exprLoc[2], exprLoc[3], 1]; + var locs = locationList; + var exprLoc; + while(!locs.isEmpty()){ + exprLoc = locs.first().elts; + locs = locs.rest(); + } - var closeParen = [exprLoc[0], exprLoc[1] + exprLoc[4] - 1, exprLoc[2], exprLoc[3] + exprLoc[4] - 1, 1]; + var argColoredParts = getArgColoredParts(locationList.rest()); - var op = types.vector(openParen); - var cp = types.vector(closeParen); + var op = types.vector([exprLoc[0], exprLoc[1], exprLoc[2], exprLoc[3], 1]); + var cp = types.vector([exprLoc[0], exprLoc[1] + exprLoc[4] - 1, exprLoc[2], exprLoc[3] + exprLoc[4] - 1, 1]); helpers.raise( types.incompleteExn(types.exnFailContract, diff --git a/src/compiler/helpers.ss b/src/compiler/helpers.ss index c9b8925..8576bf9 100644 --- a/src/compiler/helpers.ss +++ b/src/compiler/helpers.ss @@ -414,49 +414,56 @@ ;;handle-defn-values-error: stx -> ??? (define (handle-defn-values-error a-definition) (let ((parts (stx-e a-definition))) - (cond - [(= 1 (length parts)) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-values" (stx-loc (first parts))) - ": expects a list of identifiers and a body, but found neither")))] - [(= 2 (length parts)) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-values" (stx-loc (first parts))) - ": expects a list of identifiers and a body, but found only " - (make-ColoredPart "one part" (stx-loc (second parts))))))] - - [(> (length parts) 3) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-values" (stx-loc (first parts))) - ": expects a list of identifiers and a body, but found " - (make-MultiPart "extra parts" (map stx-loc (rest (rest (rest parts))))))))] - [(not (list? (stx-e (third parts)))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-values" (stx-loc (first parts))) - ": expects a list of identifiers and a body, but found " - (make-ColoredPart "a part" (stx-loc (third parts))))))] - [(not (list? (stx-e (second parts)))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-values" (stx-loc (first parts))) - ": expects a list of identifiers and a body, but found " - (make-ColoredPart "something else" (stx-loc (second parts))))))] - [(not (stx-list-of-symbols? (second parts))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-values" (stx-loc (first parts))) - ": expects a list of identifiers and a body, but found " - (make-ColoredPart "something else" (stx-loc (find-first-non-symbol (stx-e (second parts))))))))] - [(not (= (length (stx-e (second parts))) (- (length (stx-e (third parts))) 1))) - - (let ((numID (length (stx-e (second parts)))) - (numVals (length (stx-e (third parts))))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-values" (stx-loc (first parts))) - ": expected " - (make-MultiPart (string-append (number->string numID) (if (= 1 numID) " part" " parts")) (map stx-loc (stx-e (second parts)))) - ", but found " - (make-MultiPart (string-append (number->string numVals) (if (= 1 numVals) " part" " parts") (map stx-loc (stx-e (third parts)))))))))] - - ))) + (cond + [(= 1 (length parts)) (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define-values" (stx-loc (first parts))) + ": expects a list of variables and a body, but found neither")))] + [(= 2 (length parts)) (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define-values" (stx-loc (first parts))) + ": expects a list of variables and a body, but found only " + (make-ColoredPart "one part" (stx-loc (second parts))))))] + [(not (list? (stx-e (second parts)))) (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define-values" (stx-loc (first parts))) + ": expects a list of variables and a body, but found " + (make-ColoredPart "something else" (stx-loc (second parts))))))] + [(not (stx-list-of-symbols? (second parts))) (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define-values" (stx-loc (first parts))) + ": expects a list of variables and a body, but found " + (make-ColoredPart "something else" + (stx-loc (find-first-non-symbol (stx-e (second parts))))))))] + + [(not (list? (stx-e (third parts)))) (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define-values" (stx-loc (first parts))) + ": expects a list of variables and a body, but found " + (make-ColoredPart "a part" (stx-loc (third parts))))))] + ;;TEST FOR VALUES IN FIRST PIECE + [(not (= (length (stx-e (second parts))) (- (length (stx-e (third parts))) 1))) + (let ((numID (length (stx-e (second parts)))) + (numVals (length (stx-e (third parts))))) (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define-values" (stx-loc (first parts))) + ": expected " + (make-MultiPart (string-append (number->string numID) + (if (= 1 numID) " part" " parts")) + (map stx-loc (stx-e (second parts)))) + ", but found " + (make-MultiPart (string-append (number->string numVals) + (if (= 1 numVals) " part" " parts")) + (map stx-loc (stx-e (third parts))))))))] + [(> (length parts) 3) (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define-values" (stx-loc (first parts))) + ": expects a list of variables and a body, but found " + (make-MultiPart (string-append + (if (> (length (rest (rest (rest parts)))) 1) "" "an ") + "extra part" + (if (> (length (rest (rest (rest parts)))) 1) "s" "")) + (map stx-loc (rest (rest (rest parts))))))))]))) ;;define-var?: definition -> boolean @@ -479,33 +486,43 @@ [(= (length parts) 1) (raise (make-moby-error (stx-loc a-definition) (make-Message (make-ColoredPart "define" (stx-loc (first parts))) - ": expected a variable name, or a function name and its variables (in parentheses), but nothing's there")))] + ": expected a variable, or a function name and its variables (in parentheses), after define, but nothing's there")))] [(= (length (stx-e (second parts))) 0) (raise (make-moby-error (stx-loc a-definition) (make-Message (make-ColoredPart "define" (stx-loc (first parts))) - ": expected a name for the function, but found nothing " - (make-ColoredPart "there" (stx-loc (second parts))))))] + ": expected a name for the function within " + (make-ColoredPart "the parentheses" (stx-loc (second parts))))))] - [(not (stx-list-of-symbols? (second parts))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define" (stx-loc (first parts))) - ": expected a variable but found " - (make-ColoredPart "something else" (stx-loc (find-first-non-symbol (stx-e (second parts))))))))] - [(= (length (stx-e (second parts))) 1) - (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define" (stx-loc (first parts))) - ": expected at least one variable after the " - (make-ColoredPart "function name" (stx-loc (first (stx-e (second parts))))) - ", but found none")))] + [(not (stx-list-of-symbols? (second parts))) + (if (not (symbol? (stx-e (first (stx-e (second parts)))))) + (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define" (stx-loc (first parts))) + ": expected a function name after the open parenthesis but found " + (make-ColoredPart "something else" + (stx-loc (find-first-non-symbol (stx-e (second parts)))))))) + (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define" (stx-loc (first parts))) + ": expected a variable but found " + (make-ColoredPart "something else" + (stx-loc (find-first-non-symbol (stx-e (second parts)))))))))] + #;[(= (length (stx-e (second parts))) 1) + (raise (make-moby-error (stx-loc a-definition) + (make-Message + (make-ColoredPart "define" (stx-loc (first parts))) + ": expected at least one variable after the " + (make-ColoredPart "function name" (stx-loc (first (stx-e (second parts))))) + ", but found none")))] [(> (length parts) 3) (raise (make-moby-error (stx-loc a-definition) (make-Message (make-ColoredPart "define" (stx-loc (first parts))) ": expected only one expression for the function body, but found " - (make-MultiPart (string-append (number->string (- (length parts) 3)) " extra part" (if (> (length parts) 4) "s" "")) (map stx-loc (rest (rest (rest parts))))))))] + (make-MultiPart (string-append (number->string (- (length parts) 3)) " extra part" (if (> (length parts) 4) "s" "")) + (map stx-loc (rest (rest (rest parts))))))))] [(< (length parts) 3) (raise (make-moby-error (stx-loc a-definition) (make-Message (make-ColoredPart "define" (stx-loc (first parts))) @@ -516,20 +533,20 @@ (let ((parts (stx-e a-definition))) (cond [(not (symbol? (stx-e (second parts)))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define" (stx-loc (first parts))) - ": expected a variable name but found " - (make-ColoredPart "something else" (stx-loc (second parts))))))] + (make-Message + (make-ColoredPart "define" (stx-loc (first parts))) + ": expected a variable but found " + (make-ColoredPart "something else" (stx-loc (second parts))))))] [(< (length parts) 3) (raise (make-moby-error (stx-loc a-definition) (make-Message (make-ColoredPart "define" (stx-loc (first parts))) - ": expected an expression after the variable name " + ": expected an expression after the variable " (make-ColoredPart (symbol->string (stx->datum (second parts))) (stx-loc (second parts))) " but nothing's there")))] [(> (length parts) 3) (raise (make-moby-error (stx-loc a-definition) (make-Message (make-ColoredPart "define" (stx-loc (first parts))) - ": expected only one expression after the variable name " + ": expected only one expression after the variable " (make-ColoredPart (symbol->string (stx->datum (second parts))) (stx-loc (second parts))) ", but found " (make-MultiPart (string-append (number->string (- (length parts) 3)) " extra part" (if (> (length parts) 4) "s" "")) @@ -540,14 +557,14 @@ (let ((parts (stx-e a-definition))) (cond [(= (length parts) 1) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-struct" (stx-loc (first parts))) - ": expected the structure name after define-struct, but nothing's there")))] + (make-Message + (make-ColoredPart "define-struct" (stx-loc (first parts))) + ": expected the structure name after define-struct, but nothing's there")))] [(not (symbol? (stx-e (second parts)))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-struct" (stx-loc (first parts))) - ": expected the structure name after define-struct, but found " - (make-ColoredPart "something else" (stx-loc (second parts))))))] + (make-Message + (make-ColoredPart "define-struct" (stx-loc (first parts))) + ": expected the structure name after define-struct, but found " + (make-ColoredPart "something else" (stx-loc (second parts))))))] [(= (length parts) 2) (raise (make-moby-error (stx-loc a-definition) (make-Message (make-ColoredPart "define-struct" (stx-loc (first parts))) @@ -555,30 +572,30 @@ (make-ColoredPart "structure name" (stx-loc (second parts))) ", but nothing's there")))] [(not (list? (stx-e (third parts)))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-struct" (stx-loc (first parts))) - ": expected at least one field name (in parentheses) after the " - (make-ColoredPart "structure name" (stx-loc (second parts))) - ", but found " - (make-ColoredPart "something else" (stx-loc (third parts))))))] + (make-Message + (make-ColoredPart "define-struct" (stx-loc (first parts))) + ": expected at least one field name (in parentheses) after the " + (make-ColoredPart "structure name" (stx-loc (second parts))) + ", but found " + (make-ColoredPart "something else" (stx-loc (third parts))))))] [(not (stx-list-of-symbols? (third parts))) (raise (make-moby-error (stx-loc a-definition) - (make-Message - (make-ColoredPart "define-struct" (stx-loc (first parts))) - ": expected a field name, but found " - (make-ColoredPart "something else" (stx-loc (find-first-non-symbol (stx-e (third parts))))))))] + (make-Message + (make-ColoredPart "define-struct" (stx-loc (first parts))) + ": expected a field name, but found " + (make-ColoredPart "something else" (stx-loc (find-first-non-symbol (stx-e (third parts))))))))] [(> (length parts) 3) (raise (make-moby-error (stx-loc a-definition) (make-Message (make-ColoredPart "define-struct" (stx-loc (first parts))) ": expected nothing after the " - (make-ColoredPart (string-append "field name" (if (> 1 (length (stx-e (third parts)))) "s" "")) (stx-loc (third parts))) + (make-ColoredPart (string-append "field name" (if (> (length (stx-e (third parts))) 1) "s" "")) (stx-loc (third parts))) ", but found " (make-MultiPart (string-append (number->string (- (length parts) 3)) " extra part" (if (> (length parts) 4) "s" "")) (map stx-loc (rest (rest (rest parts))))))))]))) - - - - - + + + + + ;; symbol-stx?: any -> boolean diff --git a/src/compiler/mzscheme-vm/mzscheme-vm.ss b/src/compiler/mzscheme-vm/mzscheme-vm.ss index 0f0e587..a3215f1 100644 --- a/src/compiler/mzscheme-vm/mzscheme-vm.ss +++ b/src/compiler/mzscheme-vm/mzscheme-vm.ss @@ -542,11 +542,13 @@ (compile-application-expression operator operands env pinfo-1)]) (values (bcode:make-with-cont-mark MOBY-APPLICATION-POSITION-KEY ; (cons (stx->datum expr) + (append (cons (loc->vec (stx-loc operator)) (map (lambda (rand) (loc->vec (stx-loc rand))) - operands));) + operands)) + (list (loc->vec (stx-loc expr))));) (bcode:make-with-cont-mark MOBY-STACK-RECORD-CONTINUATION-MARK-KEY (loc->vec (stx-loc expr)) diff --git a/tests/test-htdocs/test-main.js b/tests/test-htdocs/test-main.js index 4196c46..c380fe6 100644 --- a/tests/test-htdocs/test-main.js +++ b/tests/test-htdocs/test-main.js @@ -1728,7 +1728,7 @@ var runTests = function() { runtime.string('#\\b 0+2i b')); testPrim('format', id, ['~s ~a', primitive.getPrimitive('+'), primitive.getPrimitive('format')], - runtime.string('# #')); + runtime.string('# #')); var box1 = types.box('junk'); var box2 = types.box(box1); @@ -3676,6 +3676,8 @@ var runTests = function() { "false") + + queueErrorTest("set! is not enabled, part 1", "set!", "set!: this variable is not defined") @@ -3687,18 +3689,13 @@ var runTests = function() { queueErrorTest("test mis-application 1", "(define (double x) (+ x x)) (double double)", - "+: expects a number as 1st argument, but given: #; other arguments were: #"); + "+: expects a number as 1st argument, but given: #; other arguments were: #"); queueErrorTest("test mis-application 2", "(define (double x) (+ x x)) (double double 25)", - "double: expects 1 argument, but given 2: # 25"); - - + "double: expects 1 argument, but given 2: # 25"); - - - - queueErrorTest("test a error in map", + queueErrorTest("test a error in map", '(map add1 (list "1"))', 'add1: expects a number as 1st argument, but given: "1"'); @@ -3976,11 +3973,11 @@ var runTests = function() { queueErrorTest("on-tick 1 arg", "(on-tick 1)", - "on-tick: expects a procedure as 1st argument, but given: 1"); + "on-tick: expects a function name as 1st argument, but given: 1"); queueErrorTest("on-tick 2 args", "(on-tick 1 2)", - "on-tick: expects a procedure as 1st argument, but given: 1; other arguments were: 2"); + "on-tick: expects a function name as 1st argument, but given: 1; other arguments were: 2"); queueErrorTest("on-tick! bad args amount", "(on-tick!)", @@ -3988,11 +3985,11 @@ var runTests = function() { queueErrorTest("on-tick! given 2 bad args", "(on-tick! 1 2)", - "on-tick!: expects a procedure as 1st argument, but given: 1; other arguments were: 2"); + "on-tick!: expects a function name as 1st argument, but given: 1; other arguments were: 2"); queueErrorTest("on-tick! given 3 bad args", "(on-tick! 1 2 3)", - "on-tick!: expects a procedure as 1st argument, but given: 1; other arguments were: 2 3"); + "on-tick!: expects a function name as 1st argument, but given: 1; other arguments were: 2 3"); queueErrorTest("on-tap bad arg amount", "(on-tap)", @@ -4000,7 +3997,7 @@ var runTests = function() { queueErrorTest("on-tap bad arg a", "(on-tap 1)", - "on-tap: expects a procedure as 1st argument, but given: 1"); + "on-tap: expects a function name as 1st argument, but given: 1"); queueErrorTest("on-tilt bad arg amount", "(on-tilt)", @@ -4008,7 +4005,7 @@ var runTests = function() { queueErrorTest("on-tilt bad arg a", "(on-tilt 1)", - "on-tilt: expects a procedure as 1st argument, but given: 1"); + "on-tilt: expects a function name as 1st argument, but given: 1"); queueErrorTest("on-key bad arg amount", "(on-key)", @@ -4016,7 +4013,7 @@ var runTests = function() { queueErrorTest("on-key bad arg a", "(on-key 1)", - "on-key: expects a procedure as 1st argument, but given: 1"); + "on-key: expects a function name as 1st argument, but given: 1"); queueErrorTest("on-key! bad arg amount", "(on-key!)", @@ -4024,7 +4021,7 @@ var runTests = function() { queueErrorTest("on-key! bad arg a", "(on-key! 1 1)", - "on-key!: expects a procedure as 1st argument, but given: 1; other arguments were: 1"); + "on-key!: expects a function name as 1st argument, but given: 1; other arguments were: 1"); queueErrorTest("stop-when bad arg amount", "(stop-when)", @@ -4032,7 +4029,7 @@ var runTests = function() { queueErrorTest("stop-when bad arg a", "(stop-when 1)", - "stop-when: expects a procedure as 1st argument, but given: 1"); + "stop-when: expects a function name as 1st argument, but given: 1"); /* queueErrorTest("stop-when! bad arg amount", "(stop-when!)", @@ -4040,7 +4037,7 @@ var runTests = function() { queueErrorTest("stop-when! bad arg a", "(stop-when! 1 1)", - "stop-when!: expects a procedure as 1st argument, but given: 1; other arguments were: 1"); + "stop-when!: expects a function name as 1st argument, but given: 1; other arguments were: 1"); */ queueErrorTest("on-redraw bad arg amount", "(on-redraw)", @@ -4048,7 +4045,7 @@ var runTests = function() { queueErrorTest("on-redraw bad arg a", "(on-redraw 1)", - "on-redraw: expects a procedure as 1st argument, but given: 1"); + "on-redraw: expects a function name as 1st argument, but given: 1"); @@ -4058,11 +4055,11 @@ var runTests = function() { queueErrorTest("on-draw bad arg a", "(on-draw 1)", - "on-draw: expects a procedure as 1st argument, but given: 1"); + "on-draw: expects a function name as 1st argument, but given: 1"); queueErrorTest("on-draw bad arg as", "(on-draw 1 2)", - "on-draw: expects a procedure as 1st argument, but given: 1; other arguments were: 2"); + "on-draw: expects a function name as 1st argument, but given: 1; other arguments were: 2"); queueErrorTest("initial-effect bad arg amount (no args)", "(initial-effect)", @@ -4078,7 +4075,7 @@ var runTests = function() { queueErrorTest("big-bang given wrong type of arg as 2nd arg", "(big-bang 1 1)", - "big-bang: expects a handler or attribute list as 2nd argument, but given: 1; other arguments were: 1"); + "big-bang: expects a handler as 2nd argument, but given: 1; other arguments were: 1"); queueErrorTest("make-struct-type wrong number of args", "(make-struct-type)", @@ -4094,7 +4091,7 @@ var runTests = function() { queueErrorTest("make-struct-field-accessor given wrong arg type", "(make-struct-field-accessor 1 1 1)", - "make-struct-field-accessor: expects an accessor procedure that requires a field index as 1st argument, but given: 1; other arguments were: 1 1"); + "make-struct-field-accessor: expects an accessor function name that requires a field index as 1st argument, but given: 1; other arguments were: 1 1"); queueErrorTest("make-struct-field-accessor given 2 wrong args", "(make-struct-field-accessor 1 1)", @@ -4118,7 +4115,7 @@ var runTests = function() { queueErrorTest("procedure-arity given bad arg a", "(procedure-arity 1)", - "procedure-arity: expects a procedure as 1st argument, but given: 1"); + "procedure-arity: expects a function name as 1st argument, but given: 1"); queueErrorTest("procedure-arity given way too many args", "(procedure-arity 1 1 1 1 1 1 1 1 1 1)", @@ -4130,19 +4127,19 @@ var runTests = function() { queueErrorTest("apply given bad arg as", "(apply 1 1)", - "apply: expects a procedure as 1st argument, but given: 1; other arguments were: 1"); + "apply: expects a function name as 1st argument, but given: 1; other arguments were: 1"); queueErrorTest("apply given bad arg a for second arg", "(apply add1 1)", - "apply: expects a list as 2nd argument, but given: 1; other arguments were: #"); + "apply: expects a list as 2nd argument, but given: 1; other arguments were: #"); queueErrorTest("compose given bad arg a", "(compose 1)", - "compose: expects a procedure as 1st argument, but given: 1"); + "compose: expects a function name as 1st argument, but given: 1"); queueErrorTest("compose given bad 2nd arg a", "(compose add1 1)", - "compose: expects a procedure as 2nd argument, but given: 1; other arguments were: #"); + "compose: expects a function name as 2nd argument, but given: 1; other arguments were: #"); queueErrorTest("current-inexact-milliseconds given too many args", "(current-inexact-milliseconds 1)", @@ -4166,11 +4163,11 @@ var runTests = function() { queueErrorTest("random given bad arg a", "(random add1)", - "random: expects a non-negative exact integer as 1st argument, but given: #"); + "random: expects a non-negative exact integer as 1st argument, but given: #"); queueErrorTest("sleep given bad arg a", "(sleep add1)", - "sleep: expects a non-negative real number as 1st argument, but given: #"); + "sleep: expects a non-negative real number as 1st argument, but given: #"); queueErrorTest("sleep given too many args", "(sleep 1 2)", @@ -4210,24 +4207,28 @@ var runTests = function() { queueErrorTest("* given bad arg", "(* add1)", - "*: expects a number as 1st argument, but given: #"); + "*: expects a number as 1st argument, but given: #"); queueErrorTest("/ given bad arg", "(/ add1)", - "/: expects a number as 1st argument, but given: #"); + "/: expects a number as 1st argument, but given: #"); queueErrorTest("- given bad arg", "(- add1)", - "-: expects a number as 1st argument, but given: #"); + "-: expects a number as 1st argument, but given: #"); queueErrorTest("+ given bad arg", "(+ add1)", - "+: expects a number as 1st argument, but given: #"); + "+: expects a number as 1st argument, but given: #"); queueErrorTest("/ given no args", "(/)", "/: expects at least 1 argument, but given 0"); + queueErrorTest("/ given no args", + "(/ 5 0)", + "/: cannot divide by zero"); + queueErrorTest("- given no args", "(-)", "-: expects at least 1 argument, but given 0"); @@ -4238,11 +4239,11 @@ var runTests = function() { queueErrorTest("= given bad 2nd arg", "(= 1 sub1)", - "=: expects a number as 2nd argument, but given: #; other arguments were: 1"); + "=: expects a number as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("= given bad first arg", "(= sub1 1)", - "=: expects a number as 1st argument, but given: #; other arguments were: 1"); + "=: expects a number as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("=~ given no args", "(=~)", @@ -4250,7 +4251,7 @@ var runTests = function() { queueErrorTest("=~ given bad as", "(=~ add1 sub1 add1)", - "=~: expects a real as 1st argument, but given: #; other arguments were: # #"); + "=~: expects a real as 1st argument, but given: #; other arguments were: # #"); queueErrorTest("sub1 given no args", "(sub1)", @@ -4258,7 +4259,7 @@ var runTests = function() { queueErrorTest("sub1 given a bad arg", "(sub1 add1)", - "sub1: expects a number as 1st argument, but given: #"); + "sub1: expects a number as 1st argument, but given: #"); queueErrorTest("sub1 given too many args", "(sub1 1 1 1)", @@ -4274,7 +4275,7 @@ var runTests = function() { queueErrorTest("add1 given a bad arg", "(add1 add1)", - "add1: expects a number as 1st argument, but given: #"); + "add1: expects a number as 1st argument, but given: #"); queueErrorTest("< given no args", @@ -4283,11 +4284,11 @@ var runTests = function() { queueErrorTest("< given 1 bad arg", "(< add1 1)", - "<: expects a number as 1st argument, but given: #; other arguments were: 1"); + "<: expects a number as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("< given 1 bad arg (2nd arg)", "(< 1 add1)", - "<: expects a number as 2nd argument, but given: #; other arguments were: 1"); + "<: expects a number as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("< given too few args", "(< 1)", @@ -4299,11 +4300,11 @@ var runTests = function() { queueErrorTest("> given 1 bad arg", "(> add1 1)", - ">: expects a number as 1st argument, but given: #; other arguments were: 1"); + ">: expects a number as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("> given 1 bad arg (2nd arg)", "(> 1 add1)", - ">: expects a number as 2nd argument, but given: #; other arguments were: 1"); + ">: expects a number as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("> given too few args", "(> 1)", @@ -4316,11 +4317,11 @@ var runTests = function() { queueErrorTest("<= given bad arg (first arg))", "(<= add1 1)", - "<=: expects a number as 1st argument, but given: #; other arguments were: 1"); + "<=: expects a number as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("<= given 1 bad arg (2nd arg)", "(<= 1 add1)", - "<=: expects a number as 2nd argument, but given: #; other arguments were: 1"); + "<=: expects a number as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("<= given too few args", "(<= 1)", @@ -4332,11 +4333,11 @@ var runTests = function() { queueErrorTest(">= given bad arg (first arg))", "(>= add1 1)", - ">=: expects a number as 1st argument, but given: #; other arguments were: 1"); + ">=: expects a number as 1st argument, but given: #; other arguments were: 1"); queueErrorTest(">= given 1 bad arg (2nd arg)", "(>= 1 add1)", - ">=: expects a number as 2nd argument, but given: #; other arguments were: 1"); + ">=: expects a number as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest(">= given too few args", "(>= 1)", @@ -4348,7 +4349,7 @@ var runTests = function() { queueErrorTest("abs given 1 bad arg", "(abs add1)", - "abs: expects a real as 1st argument, but given: #"); + "abs: expects a real as 1st argument, but given: #"); queueErrorTest("abs given too many args", "(abs 1 1)", @@ -4360,11 +4361,11 @@ var runTests = function() { queueErrorTest("quotient given 1 bad arg (first arg))", "(quotient add1 1)", - "quotient: expects an integer as 1st argument, but given: #; other arguments were: 1"); + "quotient: expects an integer as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("quotient given 1 bad arg (2nd arg)", "(quotient 1 add1)", - "quotient: expects an integer as 2nd argument, but given: #; other arguments were: 1"); + "quotient: expects an integer as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("quotient given too many args", "(quotient 1 1 1)", @@ -4376,11 +4377,11 @@ var runTests = function() { queueErrorTest("remainder given 1 bad arg (first arg))", "(remainder add1 1)", - "remainder: expects an integer as 1st argument, but given: #; other arguments were: 1"); + "remainder: expects an integer as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("remainder given 1 bad arg (2nd arg)", "(remainder 1 add1)", - "remainder: expects an integer as 2nd argument, but given: #; other arguments were: 1"); + "remainder: expects an integer as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("remainder given too many args", "(remainder 1 1 1)", @@ -4392,11 +4393,11 @@ var runTests = function() { queueErrorTest("modulo given 1 bad arg (first arg))", "(modulo add1 1)", - "modulo: expects an integer as 1st argument, but given: #; other arguments were: 1"); + "modulo: expects an integer as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("modulo given 1 bad arg (2nd arg)", "(modulo 1 add1)", - "modulo: expects an integer as 2nd argument, but given: #; other arguments were: 1"); + "modulo: expects an integer as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("modulo given too many args", "(modulo 1 1 1)", @@ -4408,11 +4409,11 @@ var runTests = function() { queueErrorTest("max given 1 bad arg", "(max add1)", - "max: expects a real as 1st argument, but given: #"); + "max: expects a real as 1st argument, but given: #"); queueErrorTest("max given 1 good 1 bad arg", "(max 1 add1)", - "max: expects a real as 2nd argument, but given: #; other arguments were: 1"); + "max: expects a real as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("min given no args", "(min)", @@ -4420,11 +4421,11 @@ var runTests = function() { queueErrorTest("min given 1 bad arg", "(min add1)", - "min: expects a real as 1st argument, but given: #"); + "min: expects a real as 1st argument, but given: #"); queueErrorTest("min given 1 good 1 bad arg", "(min 1 add1)", - "min: expects a real as 2nd argument, but given: #; other arguments were: 1"); + "min: expects a real as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("gcd given no args", "(gcd)", @@ -4432,11 +4433,11 @@ var runTests = function() { queueErrorTest("gcd given 1 bad arg", "(gcd add1)", - "gcd: expects an integer as 1st argument, but given: #"); + "gcd: expects an integer as 1st argument, but given: #"); queueErrorTest("gcd given 1 good 1 bad arg", "(gcd 1 add1)", - "gcd: expects an integer as 2nd argument, but given: #; other arguments were: 1"); + "gcd: expects an integer as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("lcm given no args", "(lcm)", @@ -4444,11 +4445,11 @@ var runTests = function() { queueErrorTest("lcm given 1 bad arg", "(lcm add1)", - "lcm: expects an integer as 1st argument, but given: #"); + "lcm: expects an integer as 1st argument, but given: #"); queueErrorTest("lcm given 1 good 1 bad arg", "(lcm 1 add1)", - "lcm: expects an integer as 2nd argument, but given: #; other arguments were: 1"); + "lcm: expects an integer as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("floor given no args", "(floor)", @@ -4456,7 +4457,7 @@ var runTests = function() { queueErrorTest("floor given 1 bad arg", "(floor add1)", - "floor: expects a real as 1st argument, but given: #"); + "floor: expects a real as 1st argument, but given: #"); queueErrorTest("floor given too many args", "(floor 1 1 1)", @@ -4468,7 +4469,7 @@ var runTests = function() { queueErrorTest("ceiling given 1 bad arg", "(ceiling add1)", - "ceiling: expects a real as 1st argument, but given: #"); + "ceiling: expects a real as 1st argument, but given: #"); queueErrorTest("ceiling given too many args", "(ceiling 1 1 1)", @@ -4480,7 +4481,7 @@ var runTests = function() { queueErrorTest("round given 1 bad arg", "(round add1)", - "round: expects a real as 1st argument, but given: #"); + "round: expects a real as 1st argument, but given: #"); queueErrorTest("round given too many args", "(round 1 1 1)", @@ -4492,7 +4493,7 @@ var runTests = function() { queueErrorTest("numerator given 1 bad arg", "(numerator add1)", - "numerator: expects a rational number as 1st argument, but given: #"); + "numerator: expects a rational number as 1st argument, but given: #"); queueErrorTest("numerator given too many args", "(numerator 1 1 1)", @@ -4504,7 +4505,7 @@ var runTests = function() { queueErrorTest("denominator given 1 bad arg", "(denominator add1)", - "denominator: expects a rational number as 1st argument, but given: #"); + "denominator: expects a rational number as 1st argument, but given: #"); queueErrorTest("denominator given too many args", "(denominator 1 1 1)", @@ -4516,11 +4517,11 @@ var runTests = function() { queueErrorTest("expt given bad first arg, valid 2nd arg", "(expt add1 1)", - "expt: expects a number as 1st argument, but given: #; other arguments were: 1"); + "expt: expects a number as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("expt given valid 1st arg, bad 2nd arg", "(expt 1 add1)", - "expt: expects a number as 2nd argument, but given: #; other arguments were: 1"); + "expt: expects a number as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("expt given too many args", "(expt 1 1 1)", @@ -4532,7 +4533,7 @@ var runTests = function() { queueErrorTest("exp given 1 bad arg", "(exp add1)", - "exp: expects a number as 1st argument, but given: #"); + "exp: expects a number as 1st argument, but given: #"); queueErrorTest("exp given too many bad args", "(exp 1 1)", @@ -4544,7 +4545,7 @@ var runTests = function() { queueErrorTest("log given 1 bad arg", "(log add1)", - "log: expects a number as 1st argument, but given: #"); + "log: expects a number as 1st argument, but given: #"); queueErrorTest("log given too many args", "(log 1 1)", @@ -4556,7 +4557,7 @@ var runTests = function() { queueErrorTest("sin given 1 bad arg", "(sin add1)", - "sin: expects a number as 1st argument, but given: #"); + "sin: expects a number as 1st argument, but given: #"); queueErrorTest("sin given too many args", "(sin 1 1)", @@ -4569,7 +4570,7 @@ var runTests = function() { queueErrorTest("cos given 1 bad arg", "(cos add1)", - "cos: expects a number as 1st argument, but given: #"); + "cos: expects a number as 1st argument, but given: #"); queueErrorTest("cos given too many args", "(cos 1 1)", @@ -4582,7 +4583,7 @@ var runTests = function() { queueErrorTest("tan given 1 bad arg", "(tan add1)", - "tan: expects a number as 1st argument, but given: #"); + "tan: expects a number as 1st argument, but given: #"); queueErrorTest("tan given too many args", "(tan 1 1)", @@ -4595,7 +4596,7 @@ var runTests = function() { queueErrorTest("asin given 1 bad arg", "(asin add1)", - "asin: expects a number as 1st argument, but given: #"); + "asin: expects a number as 1st argument, but given: #"); queueErrorTest("asin given too many args", "(asin 1 1)", @@ -4608,7 +4609,7 @@ var runTests = function() { queueErrorTest("acos given 1 bad arg", "(acos add1)", - "acos: expects a number as 1st argument, but given: #"); + "acos: expects a number as 1st argument, but given: #"); queueErrorTest("acos given too many args", "(acos 1 1)", @@ -4621,7 +4622,7 @@ var runTests = function() { queueErrorTest("atan given 1 bad arg", "(atan add1)", - "atan: expects a number as 1st argument, but given: #"); + "atan: expects a number as 1st argument, but given: #"); queueErrorTest("atan given too many args", "(atan 1 1)", @@ -4635,7 +4636,7 @@ var runTests = function() { queueErrorTest("sinh given 1 bad arg", "(sinh add1)", - "sinh: expects a number as 1st argument, but given: #"); + "sinh: expects a number as 1st argument, but given: #"); queueErrorTest("sinh given too many args", "(sinh 1 1)", @@ -4648,7 +4649,7 @@ var runTests = function() { queueErrorTest("cosh given 1 bad arg", "(cosh add1)", - "cosh: expects a number as 1st argument, but given: #"); + "cosh: expects a number as 1st argument, but given: #"); queueErrorTest("cosh given too many args", "(cosh 1 1)", @@ -4660,7 +4661,7 @@ var runTests = function() { queueErrorTest("sqr given 1 bad arg", "(sqr add1)", - "sqr: expects a number as 1st argument, but given: #"); + "sqr: expects a number as 1st argument, but given: #"); queueErrorTest("sqr given too many args", "(sqr 1 1)", @@ -4672,7 +4673,7 @@ var runTests = function() { queueErrorTest("sqrt given 1 bad arg", "(sqrt add1)", - "sqrt: expects a number as 1st argument, but given: #"); + "sqrt: expects a number as 1st argument, but given: #"); queueErrorTest("sqrt given too many args", "(sqrt 1 1)", @@ -4684,7 +4685,7 @@ var runTests = function() { queueErrorTest("integer-sqrt given 1 bad arg", "(integer-sqrt add1)", - "integer-sqrt: expects an integer as 1st argument, but given: #"); + "integer-sqrt: expects an integer as 1st argument, but given: #"); queueErrorTest("integer-sqrt given too many args", "(integer-sqrt 1 1)", @@ -4696,12 +4697,12 @@ var runTests = function() { queueErrorTest("make-rectangular given bad first arg, good 2nd", "(make-rectangular add1 1)", - "make-rectangular: expects a real as 1st argument, but given: #; other arguments were: 1"); + "make-rectangular: expects a real as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("make-rectangular given good first, bad second arg", "(make-rectangular 1 add1)", - "make-rectangular: expects a real as 2nd argument, but given: #; other arguments were: 1"); + "make-rectangular: expects a real as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("make-rectangular given too many args", "(make-rectangular 1 1 1 1 1)", @@ -4713,12 +4714,12 @@ var runTests = function() { queueErrorTest("make-polar given bad first arg, good 2nd", "(make-polar add1 1)", - "make-polar: expects a real as 1st argument, but given: #; other arguments were: 1"); + "make-polar: expects a real as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("make-polar given good first, bad second arg", "(make-polar 1 add1)", - "make-polar: expects a real as 2nd argument, but given: #; other arguments were: 1"); + "make-polar: expects a real as 2nd argument, but given: #; other arguments were: 1"); queueErrorTest("make-polar given too many args", "(make-polar 1 1 1 1 1)", @@ -4730,7 +4731,7 @@ var runTests = function() { queueErrorTest("real-part given bad arg", "(real-part add1)", - "real-part: expects a number as 1st argument, but given: #"); + "real-part: expects a number as 1st argument, but given: #"); queueErrorTest("real-part given too many args", "(real-part 1 1)", @@ -4742,7 +4743,7 @@ var runTests = function() { queueErrorTest("imag-part given bad arg", "(imag-part add1)", - "imag-part: expects a number as 1st argument, but given: #"); + "imag-part: expects a number as 1st argument, but given: #"); queueErrorTest("imag-part given too many args", "(imag-part 1 1)", @@ -4754,7 +4755,7 @@ var runTests = function() { queueErrorTest("angle given bad arg", "(angle add1)", - "angle: expects a number as 1st argument, but given: #"); + "angle: expects a number as 1st argument, but given: #"); queueErrorTest("angle given too many args", "(angle 1 1)", @@ -4766,7 +4767,7 @@ var runTests = function() { queueErrorTest("magnitude given bad arg", "(magnitude add1)", - "magnitude: expects a number as 1st argument, but given: #"); + "magnitude: expects a number as 1st argument, but given: #"); queueErrorTest("magnitude given too many args", "(magnitude 1 1)", @@ -4778,7 +4779,7 @@ var runTests = function() { queueErrorTest("conjugate given bad arg", "(conjugate add1)", - "conjugate: expects a number as 1st argument, but given: #"); + "conjugate: expects a number as 1st argument, but given: #"); queueErrorTest("conjugate given too many args", "(conjugate 1 1)", @@ -4790,7 +4791,7 @@ var runTests = function() { queueErrorTest("sgn given bad arg", "(sgn add1)", - "sgn: expects a real number as 1st argument, but given: #"); + "sgn: expects a real number as 1st argument, but given: #"); queueErrorTest("sgn given too many args", "(sgn 1 1)", @@ -4802,7 +4803,7 @@ var runTests = function() { queueErrorTest("inexact->exact given bad arg", "(inexact->exact add1)", - "inexact->exact: expects a number as 1st argument, but given: #"); + "inexact->exact: expects a number as 1st argument, but given: #"); queueErrorTest("inexact->exact given too many args", "(inexact->exact 1 1)", @@ -4814,7 +4815,7 @@ var runTests = function() { queueErrorTest("exact->inexact given bad arg", "(exact->inexact add1)", - "exact->inexact: expects a number as 1st argument, but given: #"); + "exact->inexact: expects a number as 1st argument, but given: #"); queueErrorTest("exact->inexact given too many args", "(exact->inexact 1 1)", @@ -4826,7 +4827,7 @@ var runTests = function() { queueErrorTest("number->string given bad arg", "(number->string add1)", - "number->string: expects a number as 1st argument, but given: #"); + "number->string: expects a number as 1st argument, but given: #"); queueErrorTest("number->string given too many args", "(number->string 1 1)", @@ -4838,7 +4839,7 @@ var runTests = function() { queueErrorTest("string->number given bad arg", "(string->number add1)", - "string->number: expects a string as 1st argument, but given: #"); + "string->number: expects a string as 1st argument, but given: #"); queueErrorTest("string->number given too many args", "(string->number 1 1)", @@ -4851,7 +4852,7 @@ var runTests = function() { queueErrorTest("xml->s-exp given bad arg", "(xml->s-exp add1)", - "xml->s-exp: expects a string as 1st argument, but given: #"); + "xml->s-exp: expects a string as 1st argument, but given: #"); queueErrorTest("xml->s-exp given too many args", "(xml->s-exp 1 1)", @@ -5059,7 +5060,7 @@ var runTests = function() { queueErrorTest("exact? given a bad arg", "(exact? add1)", - "exact?: expects a number as 1st argument, but given: #"); + "exact?: expects a number as 1st argument, but given: #"); queueErrorTest("exact? given too many args", "(exact? 1 1)", @@ -5071,7 +5072,7 @@ var runTests = function() { queueErrorTest("inexact? given a bad arg", "(inexact? add1)", - "inexact?: expects a number as 1st argument, but given: #"); + "inexact?: expects a number as 1st argument, but given: #"); queueErrorTest("inexact? given too many args", "(inexact? 1 1)", @@ -5083,7 +5084,7 @@ var runTests = function() { queueErrorTest("odd? given a bad arg", "(odd? add1)", - "odd?: expects an integer as 1st argument, but given: #"); + "odd?: expects an integer as 1st argument, but given: #"); queueErrorTest("odd? given too many args", "(odd? 1 1)", @@ -5095,7 +5096,7 @@ var runTests = function() { queueErrorTest("even? given a bad arg", "(even? add1)", - "even?: expects an integer as 1st argument, but given: #"); + "even?: expects an integer as 1st argument, but given: #"); queueErrorTest("even? given too many args", "(even? 1 1)", @@ -5107,7 +5108,7 @@ var runTests = function() { queueErrorTest("zero? given a bad arg", "(zero? add1)", - "zero?: expects a number as 1st argument, but given: #"); + "zero?: expects a number as 1st argument, but given: #"); queueErrorTest("zero? given too many args", "(zero? 1 1)", @@ -5119,7 +5120,7 @@ var runTests = function() { queueErrorTest("positive? given a bad arg", "(positive? add1)", - "positive?: expects a real as 1st argument, but given: #"); + "positive?: expects a real as 1st argument, but given: #"); queueErrorTest("positive? given too many args", "(positive? 1 1)", @@ -5131,7 +5132,7 @@ var runTests = function() { queueErrorTest("negative? given a bad arg", "(negative? add1)", - "negative?: expects a real as 1st argument, but given: #"); + "negative?: expects a real as 1st argument, but given: #"); queueErrorTest("negative? given too many args", "(negative? 1 1)", @@ -5199,7 +5200,7 @@ var runTests = function() { queueErrorTest("equal~? given bad arg a for 3rd arg", "(equal~? add1 sub1 add1)", - "equal~?: expects a non-negative number as 3rd argument, but given: #; other arguments were: # #"); + "equal~?: expects a non-negative number as 3rd argument, but given: #; other arguments were: # #"); queueErrorTest("false? given no args", "(false?)", @@ -5219,11 +5220,11 @@ var runTests = function() { queueErrorTest("symbol=? given bad first arg", "(symbol=? add1 sub1)", - "symbol=?: expects a symbol as 1st argument, but given: #; other arguments were: #"); + "symbol=?: expects a symbol as 1st argument, but given: #; other arguments were: #"); queueErrorTest("symbol=? given bad 2nd arg", "(symbol=? 'asdf sub1)", - "symbol=?: expects a symbol as 2nd argument, but given: #; other arguments were: asdf"); + "symbol=?: expects a symbol as 2nd argument, but given: #; other arguments were: asdf"); queueErrorTest("cons given no args", "(cons)", @@ -5239,7 +5240,7 @@ var runTests = function() { queueErrorTest("car given bad arg", "(car add1)", - "car: expects a pair as 1st argument, but given: #"); + "car: expects a pair as 1st argument, but given: #"); queueErrorTest("car given too many args", "(car 1 1 1)", @@ -5252,7 +5253,7 @@ var runTests = function() { queueErrorTest("cdr given bad arg", "(cdr add1)", - "cdr: expects a pair as 1st argument, but given: #"); + "cdr: expects a pair as 1st argument, but given: #"); queueErrorTest("cdr given too many args", "(cdr 1 1 1)", @@ -5265,7 +5266,7 @@ var runTests = function() { queueErrorTest("caar given bad arg", "(caar add1)", - "caar: expects a caarable value as 1st argument, but given: #"); + "caar: expects a caarable value as 1st argument, but given: #"); queueErrorTest("caar given too many args", "(caar 1 1 1)", @@ -5278,7 +5279,7 @@ var runTests = function() { queueErrorTest("cadr given bad arg", "(cadr add1)", - "cadr: expects a cadrable value as 1st argument, but given: #"); + "cadr: expects a cadrable value as 1st argument, but given: #"); queueErrorTest("cadr given too many args", "(cadr 1 1 1)", @@ -5291,7 +5292,7 @@ var runTests = function() { queueErrorTest("cdar given bad arg", "(cdar add1)", - "cdar: expects a cdarable value as 1st argument, but given: #"); + "cdar: expects a cdarable value as 1st argument, but given: #"); queueErrorTest("cdar given too many args", "(cdar 1 1 1)", @@ -5304,7 +5305,7 @@ var runTests = function() { queueErrorTest("cddr given bad arg", "(cddr add1)", - "cddr: expects a cddrable value as 1st argument, but given: #"); + "cddr: expects a cddrable value as 1st argument, but given: #"); queueErrorTest("cddr given too many args", "(cddr 1 1 1)", @@ -5317,7 +5318,7 @@ var runTests = function() { queueErrorTest("caaar given bad arg", "(caaar add1)", - "caaar: expects a caaarable value as 1st argument, but given: #"); + "caaar: expects a caaarable value as 1st argument, but given: #"); queueErrorTest("caaar given too many args", "(caaar 1 1 1)", @@ -5330,7 +5331,7 @@ var runTests = function() { queueErrorTest("caadr given bad arg", "(caadr add1)", - "caadr: expects a caadrable value as 1st argument, but given: #"); + "caadr: expects a caadrable value as 1st argument, but given: #"); queueErrorTest("caadr given too many args", "(caadr 1 1 1)", @@ -5343,7 +5344,7 @@ var runTests = function() { queueErrorTest("cadar given bad arg", "(cadar add1)", - "cadar: expects a cadarable value as 1st argument, but given: #"); + "cadar: expects a cadarable value as 1st argument, but given: #"); queueErrorTest("cadar given too many args", "(cadar 1 1 1)", @@ -5356,7 +5357,7 @@ var runTests = function() { queueErrorTest("cdaar given bad arg", "(cdaar add1)", - "cdaar: expects a cdaarable value as 1st argument, but given: #"); + "cdaar: expects a cdaarable value as 1st argument, but given: #"); queueErrorTest("cdaar given too many args", "(cdaar 1 1 1)", @@ -5369,7 +5370,7 @@ var runTests = function() { queueErrorTest("cdadr given bad arg", "(cdadr add1)", - "cdadr: expects a cdadrable value as 1st argument, but given: #"); + "cdadr: expects a cdadrable value as 1st argument, but given: #"); queueErrorTest("cdadr given too many args", "(cdadr 1 1 1)", @@ -5382,7 +5383,7 @@ var runTests = function() { queueErrorTest("cddar given bad arg", "(cddar add1)", - "cddar: expects a cddarable value as 1st argument, but given: #"); + "cddar: expects a cddarable value as 1st argument, but given: #"); queueErrorTest("cddar given too many args", "(cddar 1 1 1)", @@ -5395,7 +5396,7 @@ var runTests = function() { queueErrorTest("caddr given bad arg", "(caddr add1)", - "caddr: expects a caddrable value as 1st argument, but given: #"); + "caddr: expects a caddrable value as 1st argument, but given: #"); queueErrorTest("caddr given too many args", "(caddr 1 1 1)", @@ -5408,7 +5409,7 @@ var runTests = function() { queueErrorTest("cdddr given bad arg", "(cdddr add1)", - "cdddr: expects a cdddrable value as 1st argument, but given: #"); + "cdddr: expects a cdddrable value as 1st argument, but given: #"); queueErrorTest("cdddr given too many args", "(cdddr 1 1 1)", @@ -5421,7 +5422,7 @@ var runTests = function() { queueErrorTest("cadddr given bad arg", "(cadddr add1)", - "cadddr: expects a cadddrable value as 1st argument, but given: #"); + "cadddr: expects a cadddrable value as 1st argument, but given: #"); queueErrorTest("cadddr given too many args", "(cadddr 1 1 1)", @@ -5434,7 +5435,7 @@ var runTests = function() { queueErrorTest("rest given bad arg", "(rest add1)", - "rest: expects a non-empty list as 1st argument, but given: #"); + "rest: expects a non-empty list as 1st argument, but given: #"); queueErrorTest("rest given too many args", "(rest 1 1 1)", @@ -5447,7 +5448,7 @@ var runTests = function() { queueErrorTest("first given bad arg", "(first add1)", - "first: expects a non-empty list as 1st argument, but given: #"); + "first: expects a non-empty list as 1st argument, but given: #"); queueErrorTest("first given too many args", "(first 1 1 1)", @@ -5460,7 +5461,7 @@ var runTests = function() { queueErrorTest("second given bad arg", "(second add1)", - "second: expects a list with 2 or more elements as 1st argument, but given: #"); + "second: expects a list with 2 or more elements as 1st argument, but given: #"); queueErrorTest("second given too many args", "(second 1 1 1)", @@ -5472,7 +5473,7 @@ var runTests = function() { queueErrorTest("third given bad arg", "(third add1)", - "third: expects a list with 3 or more elements as 1st argument, but given: #"); + "third: expects a list with 3 or more elements as 1st argument, but given: #"); queueErrorTest("third given too many args", "(third 1 1 1)", @@ -5484,7 +5485,7 @@ var runTests = function() { queueErrorTest("fourth given bad arg", "(fourth add1)", - "fourth: expects a list with 4 or more elements as 1st argument, but given: #"); + "fourth: expects a list with 4 or more elements as 1st argument, but given: #"); queueErrorTest("fourth given too many args", "(fourth 1 1 1)", @@ -5496,7 +5497,7 @@ var runTests = function() { queueErrorTest("fifth given bad arg", "(fifth add1)", - "fifth: expects a list with 5 or more elements as 1st argument, but given: #"); + "fifth: expects a list with 5 or more elements as 1st argument, but given: #"); queueErrorTest("fifth given too many args", "(fifth 1 1 1)", @@ -5508,7 +5509,7 @@ var runTests = function() { queueErrorTest("sixth given bad arg", "(sixth add1)", - "sixth: expects a list with 6 or more elements as 1st argument, but given: #"); + "sixth: expects a list with 6 or more elements as 1st argument, but given: #"); queueErrorTest("sixth given too many args", "(sixth 1 1 1)", @@ -5520,7 +5521,7 @@ var runTests = function() { queueErrorTest("seventh given bad arg", "(seventh add1)", - "seventh: expects a list with 7 or more elements as 1st argument, but given: #"); + "seventh: expects a list with 7 or more elements as 1st argument, but given: #"); queueErrorTest("seventh given too many args", "(seventh 1 1 1)", @@ -5532,7 +5533,7 @@ var runTests = function() { queueErrorTest("eighth given bad arg", "(eighth add1)", - "eighth: expects a list with 8 or more elements as 1st argument, but given: #"); + "eighth: expects a list with 8 or more elements as 1st argument, but given: #"); queueErrorTest("eighth given too many args", "(eighth 1 1 1)", @@ -5544,7 +5545,7 @@ var runTests = function() { queueErrorTest("length given a bad arg", "(length add1)", - "length: expects a list as 1st argument, but given: #"); + "length: expects a list as 1st argument, but given: #"); queueErrorTest("length given too many args", "(length 1 1)", @@ -5576,15 +5577,15 @@ var runTests = function() { queueErrorTest("list-ref given bad arg for first arg", "(list-ref add1 1)", - "list-ref: expects a list as 1st argument, but given: #; other arguments were: 1"); + "list-ref: expects a list as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("list-ref given bad arg for second arg", "(list-ref (list) add1)", - "list-ref: expects a non-negative exact integer as 2nd argument, but given: #; other arguments were: empty"); + "list-ref: expects a non-negative exact integer as 2nd argument, but given: #; other arguments were: empty"); queueErrorTest("append given bad args", "(append sub1 add1)", - "append: expects a list as 1st argument, but given: #; other arguments were: #") + "append: expects a list as 1st argument, but given: #; other arguments were: #") queueErrorTest("reverse given no args", "(reverse)", @@ -5596,7 +5597,7 @@ var runTests = function() { queueErrorTest("reverse given bad arg", "(reverse add1)", - "reverse: expects a list as 1st argument, but given: #"); + "reverse: expects a list as 1st argument, but given: #"); queueErrorTest("underlay given no args", @@ -5646,7 +5647,7 @@ var runTests = function() { queueErrorTest("scale given bad first arg a", "(scale add1 1)", - "scale: expects a finite real number as 1st argument, but given: #; other arguments were: 1"); + "scale: expects a finite real number as 1st argument, but given: #; other arguments were: 1"); queueErrorTest("scale/xy given no args", "(scale/xy)", @@ -5666,11 +5667,11 @@ var runTests = function() { queueErrorTest("andmap given bad first arg a", "(andmap 1 1)", - "andmap: expects a procedure as 1st argument, but given: 1; other arguments were: 1"); + "andmap: expects a function name as 1st argument, but given: 1; other arguments were: 1"); queueErrorTest("andmap given bad 2nd arg a", "(andmap add1 sub1)", - "andmap: expects a list as 2nd argument, but given: #; other arguments were: #"); + "andmap: expects a list as 2nd argument, but given: #; other arguments were: #"); queueErrorTest("ormap given no args", "(ormap)", @@ -5678,11 +5679,11 @@ var runTests = function() { queueErrorTest("ormap given bad first arg a", "(ormap 1 1)", - "ormap: expects a procedure as 1st argument, but given: 1; other arguments were: 1"); + "ormap: expects a function name as 1st argument, but given: 1; other arguments were: 1"); queueErrorTest("ormap given bad 2nd arg a", "(ormap add1 sub1)", - "ormap: expects a list as 2nd argument, but given: #; other arguments were: #"); + "ormap: expects a list as 2nd argument, but given: #; other arguments were: #"); queueErrorTest("memq given no args", @@ -5746,7 +5747,7 @@ var runTests = function() { queueErrorTest("memf given bad first arg a", "(memf 1 1)", - "memf: expects a procedure as 1st argument, but given: 1; other arguments were: 1"); + "memf: expects a function name as 1st argument, but given: 1; other arguments were: 1"); queueErrorTest("assq given no args", @@ -5849,12 +5850,12 @@ var runTests = function() { queueErrorTest("test for-each arity 2", "(for-each 1 2 3 4 5)", - "for-each: expects a procedure as 1st argument, but given: 1; other arguments were: 2 3 4 5"); + "for-each: expects a function name as 1st argument, but given: 1; other arguments were: 2 3 4 5"); queueErrorTest("test for-each a", "(for-each 1 2)", - "for-each: expects a procedure as 1st argument, but given: 1; other arguments were: 2"); + "for-each: expects a function name as 1st argument, but given: 1; other arguments were: 2"); @@ -5868,7 +5869,7 @@ var runTests = function() { //filter queueErrorTest("test filter without procedure as 1st argument", "(filter 2 (list 2 3 4))", - 'filter: expects a procedure (arity 1) as 1st argument, but given: 2; other arguments were: (list 2 3 4)'); + 'filter: expects a function name (arity 1) as 1st argument, but given: 2; other arguments were: (list 2 3 4)'); //foldl queueErrorTest("test foldl with arguments of wrong a", @@ -5877,12 +5878,12 @@ var runTests = function() { queueErrorTest("test foldl with arguments of wrong a", "(foldl 1 7 (list 2 3))", - 'foldl: expects a procedure as 1st argument, but given: 1; other arguments were: 7 (list 2 3)'); + 'foldl: expects a function name as 1st argument, but given: 1; other arguments were: 7 (list 2 3)'); //foldr queueErrorTest("test foldr with arguments of wrong a", "(foldr 1 2 (list 3))", - 'foldr: expects a procedure as 1st argument, but given: 1; other arguments were: 2 (list 3)'); + 'foldr: expects a function name as 1st argument, but given: 1; other arguments were: 2 (list 3)'); queueErrorTest("test foldr with arguments of wrong a", "(foldr + \"hello\" (list 1 2 3))", @@ -5891,37 +5892,37 @@ var runTests = function() { //argmax queueErrorTest("test argmax with empty list", "(argmax 2 '())", - 'argmax: expects a procedure as 1st argument, but given: 2; other arguments were: empty'); + 'argmax: expects a function name as 1st argument, but given: 2; other arguments were: empty'); queueErrorTest("test argmax with first argument not a procedure", "(argmax 2 (list 2))", - 'argmax: expects a procedure as 1st argument, but given: 2; other arguments were: (list 2)'); + 'argmax: expects a function name as 1st argument, but given: 2; other arguments were: (list 2)'); queueErrorTest("test argmax with second argument not a list", "(argmax car 2)", - 'argmax: expects a non-empty list as 2nd argument, but given: 2; other arguments were: #'); + 'argmax: expects a non-empty list as 2nd argument, but given: 2; other arguments were: #'); //argmin queueErrorTest("test argmin with empty list", "(argmin 2 '())", - 'argmin: expects a procedure as 1st argument, but given: 2; other arguments were: empty'); + 'argmin: expects a function name as 1st argument, but given: 2; other arguments were: empty'); queueErrorTest("test argmin with first argument not a procedure", "(argmin 2 (list 2))", - 'argmin: expects a procedure as 1st argument, but given: 2; other arguments were: (list 2)'); + 'argmin: expects a function name as 1st argument, but given: 2; other arguments were: (list 2)'); queueErrorTest("test argmin with second argument not a list", "(argmin car 2)", - 'argmin: expects a non-empty list as 2nd argument, but given: 2; other arguments were: #'); + 'argmin: expects a non-empty list as 2nd argument, but given: 2; other arguments were: #'); //build-list queueErrorTest("test build-list with first argument not a number", "(build-list \"number\" add1)", - "build-list: expects a non-negative exact integer as 1st argument, but given: \"number\"; other arguments were: #"); + "build-list: expects a non-negative exact integer as 1st argument, but given: \"number\"; other arguments were: #"); queueErrorTest("test build-list with second argument not a proc", "(build-list 2 6)", - 'build-list: expects a procedure as 2nd argument, but given: 6; other arguments were: 2'); + 'build-list: expects a function name as 2nd argument, but given: 6; other arguments were: 2'); //make-hash @@ -5970,11 +5971,11 @@ var runTests = function() { queueErrorTest("test hash-map with wrong first argument not hash", "(hash-map 2 cons)", - 'hash-map: expects a hash as 1st argument, but given: 2; other arguments were: #'); + 'hash-map: expects a hash as 1st argument, but given: 2; other arguments were: #'); queueErrorTest("test hash-map with wrong 2nd argument not proc", "(hash-map (make-hash (list (list 1 100) (list 2 200) (list 3 300))) 2)", - 'hash-map: expects a procedure as 2nd argument, but given: 2; other arguments were: #hash((1 . (list 100)) (2 . (list 200)) (3 . (list 300)))'); + 'hash-map: expects a function name as 2nd argument, but given: 2; other arguments were: #hash((1 . (list 100)) (2 . (list 200)) (3 . (list 300)))'); //hash-for-each @@ -5984,11 +5985,11 @@ var runTests = function() { queueErrorTest("test hash-for-each with wrong 1st argument not proc", "(hash-for-each \"imma hash brown\" cons)", - 'hash-for-each: expects a hash as 1st argument, but given: "imma hash brown"; other arguments were: #'); + 'hash-for-each: expects a hash as 1st argument, but given: "imma hash brown"; other arguments were: #'); queueErrorTest("test hash-for-each with wrong 2nd argument not proc", "(hash-for-each (make-hash) \"add\")", - 'hash-for-each: expects a procedure as 2nd argument, but given: "add"; other arguments were: #hash()'); + 'hash-for-each: expects a function name as 2nd argument, but given: "add"; other arguments were: #hash()'); //make-string @@ -6002,7 +6003,7 @@ var runTests = function() { queueErrorTest("test make-string with 2nd argument not char", "(make-string 3 2)", - 'make-string: expects a char as 2nd argument, but given: 2; other arguments were: 3'); + 'make-string: expects a character as 2nd argument, but given: 2; other arguments were: 3'); //replicate @@ -6022,7 +6023,7 @@ var runTests = function() { queueErrorTest("test string with 1st argument not char", "(string 1)", - 'string: expects a char as 1st argument, but given: 1'); + 'string: expects a character as 1st argument, but given: 1'); //string-length @@ -6245,7 +6246,7 @@ var runTests = function() { queueErrorTest("test list->string with first argument not list of char", "(list->string (list 1 2 3))", - 'list->string: expects a list of char as 1st argument, but given: (list 1 2 3)'); + 'list->string: expects a list of character as 1st argument, but given: (list 1 2 3)'); //string-copy @@ -6291,7 +6292,7 @@ var runTests = function() { queueErrorTest("test bad inputs to big-bang", "(big-bang 1 on-tick add1)", - "big-bang: expects a handler or attribute list as 2nd argument, but given: #; other arguments were: 1 #"); + "big-bang: expects a handler as 2nd argument, but given: #; other arguments were: 1 #"); queueErrorTest("too many arguments", "(define (f x) (* x x)) (f 3 4)", @@ -6429,7 +6430,7 @@ var runTests = function() { queueErrorTest("build-string? with 2nd argument not a proc", "(build-string 5 \"hello\")", - 'build-string: expects a procedure as 2nd argument, but given: "hello"; other arguments were: 5'); + 'build-string: expects a function name as 2nd argument, but given: "hello"; other arguments were: 5'); //string->immutable-string DNE @@ -6571,11 +6572,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char; other arguments were: #\\a'); + 'char; other arguments were: #\\a'); queueErrorTest("char; other arguments were: #\\a'); + 'char; other arguments were: #\\a'); //PRIMITIVES['char>?'] @@ -6585,11 +6586,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char>? with 1st argument not char", "(char>? add1 #\\a)", - 'char>?: expects a char as 1st argument, but given: #; other arguments were: #\\a'); + 'char>?: expects a character as 1st argument, but given: #; other arguments were: #\\a'); queueErrorTest("char>? with 2nd argument not char", "(char>? #\\a add1)", - 'char>?: expects a char as 2nd argument, but given: #; other arguments were: #\\a'); + 'char>?: expects a character as 2nd argument, but given: #; other arguments were: #\\a'); //PRIMITIVES['char<=?'] @@ -6599,11 +6600,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char<=? with 1st argument not char", "(char<=? add1 #\\a)", - 'char<=?: expects a char as 1st argument, but given: #; other arguments were: #\\a'); + 'char<=?: expects a character as 1st argument, but given: #; other arguments were: #\\a'); queueErrorTest("char<=? with 2nd argument not char", "(char<=? #\\a add1)", - 'char<=?: expects a char as 2nd argument, but given: #; other arguments were: #\\a'); + 'char<=?: expects a character as 2nd argument, but given: #; other arguments were: #\\a'); //PRIMITIVES['char>=?'] @@ -6613,11 +6614,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char>=? with 1st argument not char", "(char>=? add1 #\\a)", - 'char>=?: expects a char as 1st argument, but given: #; other arguments were: #\\a'); + 'char>=?: expects a character as 1st argument, but given: #; other arguments were: #\\a'); queueErrorTest("char>=? with 2nd argument not char", "(char>=? #\\a add1)", - 'char>=?: expects a char as 2nd argument, but given: #; other arguments were: #\\a'); + 'char>=?: expects a character as 2nd argument, but given: #; other arguments were: #\\a'); //PRIMITIVES['char-ci=?'] @@ -6628,11 +6629,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-ci=? with 1st argument not char", "(char-ci=? add1 #\\a)", - 'char-ci=?: expects a char as 1st argument, but given: #; other arguments were: #\\a'); + 'char-ci=?: expects a character as 1st argument, but given: #; other arguments were: #\\a'); queueErrorTest("char-ci=? with 2nd argument not char", "(char-ci=? #\\a add1)", - 'char-ci=?: expects a char as 2nd argument, but given: #; other arguments were: #\\a'); + 'char-ci=?: expects a character as 2nd argument, but given: #; other arguments were: #\\a'); //PRIMITIVES['char-ci?'] = ALL DNE */ queueErrorTest("char-ci; other arguments were: #\\a'); + 'char-ci; other arguments were: #\\a'); queueErrorTest("char-ci; other arguments were: #\\a'); + 'char-ci; other arguments were: #\\a'); //PRIMITIVES['char-ci>?'] @@ -6657,11 +6658,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-ci>? with 1st argument not char", "(char-ci>? add1 #\\a)", - 'char-ci>?: expects a char as 1st argument, but given: #; other arguments were: #\\a'); + 'char-ci>?: expects a character as 1st argument, but given: #; other arguments were: #\\a'); queueErrorTest("char-ci>? with 2nd argument not char", "(char-ci>? #\\a add1)", - 'char-ci>?: expects a char as 2nd argument, but given: #; other arguments were: #\\a'); + 'char-ci>?: expects a character as 2nd argument, but given: #; other arguments were: #\\a'); //PRIMITIVES['char-ci<=?'] @@ -6671,11 +6672,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-ci<=? with 1st argument not char", "(char-ci<=? add1 #\\a)", - 'char-ci<=?: expects a char as 1st argument, but given: #; other arguments were: #\\a'); + 'char-ci<=?: expects a character as 1st argument, but given: #; other arguments were: #\\a'); queueErrorTest("char-ci<=? with 2nd argument not char", "(char-ci<=? #\\a add1)", - 'char-ci<=?: expects a char as 2nd argument, but given: #; other arguments were: #\\a'); + 'char-ci<=?: expects a character as 2nd argument, but given: #; other arguments were: #\\a'); //PRIMITIVES['char-ci>=?'] @@ -6685,11 +6686,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-ci>=? with 1st argument not char", "(char-ci>=? add1 #\\a)", - 'char-ci>=?: expects a char as 1st argument, but given: #; other arguments were: #\\a'); + 'char-ci>=?: expects a character as 1st argument, but given: #; other arguments were: #\\a'); queueErrorTest("char-ci>=? with 2nd argument not char", "(char-ci>=? #\\a add1)", - 'char-ci>=?: expects a char as 2nd argument, but given: #; other arguments were: #\\a'); + 'char-ci>=?: expects a character as 2nd argument, but given: #; other arguments were: #\\a'); //PRIMITIVES['char-alphabetic?'] @@ -6699,7 +6700,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-alphabetic? with 1st argument not char", "(char-alphabetic? add1)", - 'char-alphabetic?: expects a char as 1st argument, but given: #'); + 'char-alphabetic?: expects a character as 1st argument, but given: #'); //PRIMITIVES['char-numeric?'] @@ -6709,7 +6710,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-numeric? with 1st argument not char", "(char-numeric? add1)", - 'char-numeric?: expects a char as 1st argument, but given: #'); + 'char-numeric?: expects a character as 1st argument, but given: #'); //PRIMITIVES['char-whitespace?'] @@ -6719,7 +6720,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-whitespace? with 1st argument not char", "(char-whitespace? add1)", - 'char-whitespace?: expects a char as 1st argument, but given: #'); + 'char-whitespace?: expects a character as 1st argument, but given: #'); //PRIMITIVES['char-upper-case?'] @@ -6729,7 +6730,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-upper-case? with 1st argument not char", "(char-upper-case? add1)", - 'char-upper-case?: expects a char as 1st argument, but given: #'); + 'char-upper-case?: expects a character as 1st argument, but given: #'); //PRIMITIVES['char-lower-case?'] @@ -6739,7 +6740,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-lower-case? with 1st argument not char", "(char-lower-case? add1)", - 'char-lower-case?: expects a char as 1st argument, but given: #'); + 'char-lower-case?: expects a character as 1st argument, but given: #'); //PRIMITIVES['char->integer'] @@ -6749,7 +6750,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char->integer with 1st argument not char", "(char->integer add1)", - 'char->integer: expects a char as 1st argument, but given: #'); + 'char->integer: expects a character as 1st argument, but given: #'); //PRIMITIVES['integer->char'] @@ -6759,7 +6760,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("integer->char with 1st argument not integer", "(integer->char add1)", - 'integer->char: expects an exact integer in [0,#x10FFFF], not in [#xD800,#xDFFF] as 1st argument, but given: #'); + 'integer->char: expects an exact integer in [0,#x10FFFF], not in [#xD800,#xDFFF] as 1st argument, but given: #'); //perhaps change the error message so hex does not show //PRIMITIVES['char-upcase'] @@ -6770,7 +6771,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-upcase with 1st argument not char", "(char-upcase add1)", - 'char-upcase: expects a char as 1st argument, but given: #'); + 'char-upcase: expects a character as 1st argument, but given: #'); //PRIMITIVES['char-downcase'] @@ -6780,7 +6781,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("char-downcase with 1st argument not char", "(char-downcase add1)", - 'char-downcase: expects a char as 1st argument, but given: #'); + 'char-downcase: expects a character as 1st argument, but given: #'); //PRIMITIVES['make-posn'] @@ -6796,7 +6797,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("posn-x with 1st argument not posn", "(posn-x add1)", - 'posn-x: expects a posn as 1st argument, but given: #'); + 'posn-x: expects a posn as 1st argument, but given: #'); //PRIMITIVES['posn-y'] @@ -6806,7 +6807,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("posn-y with 1st argument not posn", "(posn-y add1)", - 'posn-y: expects a posn as 1st argument, but given: #'); + 'posn-y: expects a posn as 1st argument, but given: #'); //PRIMITIVES['key=?'] @@ -6851,7 +6852,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("color-red with 1st argument not color", "(color-red add1)", - 'color-red: expects a color as 1st argument, but given: #'); + 'color-red: expects a color as 1st argument, but given: #'); //PRIMITIVES['color-green'] @@ -6861,7 +6862,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("color-green with 1st argument not color", "(color-green add1)", - 'color-green: expects a color as 1st argument, but given: #'); + 'color-green: expects a color as 1st argument, but given: #'); //PRIMITIVES['color-blue'] @@ -6871,7 +6872,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("color-blue with 1st argument not color", "(color-blue add1)", - 'color-blue: expects a color as 1st argument, but given: #'); + 'color-blue: expects a color as 1st argument, but given: #'); //PRIMITIVES['color-alpha'] @@ -6881,7 +6882,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("color-alpha with 1st argument not color", "(color-alpha add1)", - 'color-alpha: expects a color as 1st argument, but given: #'); + 'color-alpha: expects a color as 1st argument, but given: #'); //PRIMITIVES['empty-scene'] @@ -6892,11 +6893,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("empty-scene with 1st argument not non-negative number", "(empty-scene add1 2)", - 'empty-scene: expects a non-negative number as 1st argument, but given: #; other arguments were: 2'); + 'empty-scene: expects a non-negative number as 1st argument, but given: #; other arguments were: 2'); queueErrorTest("empty-scene with 2nd argument not non-negative number", "(empty-scene 0 add1)", - 'empty-scene: expects a non-negative number as 2nd argument, but given: #; other arguments were: 0'); + 'empty-scene: expects a non-negative number as 2nd argument, but given: #; other arguments were: 0'); //PRIMITIVES['place-image'] @@ -6906,11 +6907,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("empty-scene with 1st argument not non-negative number", "(empty-scene add1 2)", - 'empty-scene: expects a non-negative number as 1st argument, but given: #; other arguments were: 2'); + 'empty-scene: expects a non-negative number as 1st argument, but given: #; other arguments were: 2'); queueErrorTest("empty-scene with 2nd argument not non-negative number", "(empty-scene 0 add1)", - 'empty-scene: expects a non-negative number as 2nd argument, but given: #; other arguments were: 0'); + 'empty-scene: expects a non-negative number as 2nd argument, but given: #; other arguments were: 0'); //PRIMITIVES['place-image/align'] @@ -6920,7 +6921,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("place-image/align with 1st argument not image", "(place-image/align add1 2 3 4 5 6)", - 'place-image/align: expects an image as 1st argument, but given: #; other arguments were: 2 3 4 5 6'); + 'place-image/align: expects an image as 1st argument, but given: #; other arguments were: 2 3 4 5 6'); queueErrorTest("place-image/align with 2nd argument not real number", "(place-image/align (circle 50 \"solid\" \"red\") \"hello\" 3 4 5 6)", @@ -6940,7 +6941,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("place-image/align with 6th argument not image", "(place-image/align (circle 50 \"solid\" \"red\") 2 3 \"left\" \"top\" add1)", - 'place-image/align: expects an image as 6th argument, but given: #; other arguments were: 2 3 "left" "top"'); + 'place-image/align: expects an image as 6th argument, but given: #; other arguments were: 2 3 "left" "top"'); //PRIMITIVES['scene+line'] @@ -6961,11 +6962,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("put-pinhole with 2nd argument not image", "(put-pinhole (circle 50 \"solid\" \"red\") add1 3)", - 'put-pinhole: expects a real as 2nd argument, but given: #; other arguments were: 3'); + 'put-pinhole: expects a real as 2nd argument, but given: #; other arguments were: 3'); queueErrorTest("put-pinhole with 3rd argument not image", "(put-pinhole (circle 50 \"solid\" \"red\") 1 add1)", - 'put-pinhole: expects a real as 3rd argument, but given: #; other arguments were: 1'); + 'put-pinhole: expects a real as 3rd argument, but given: #; other arguments were: 1'); //PRIMITIVES['circle'] @@ -6979,11 +6980,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("circle with 2nd argument not style", "(circle 1 2 3)", - 'circle: expects a style as 2nd argument, but given: 2; other arguments were: 1 3'); + 'circle: expects a style ("solid" or "outline") as 2nd argument, but given: 2; other arguments were: 1 3'); queueErrorTest("circle with 3rd argument not colour", "(circle 1 \"solid\" add1)", - 'circle: expects a color as 3rd argument, but given: #; other arguments were: 1 "solid"'); + 'circle: expects a color as 3rd argument, but given: #; other arguments were: 1 "solid"'); //PRIMITIVES['star'] @@ -6997,11 +6998,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("star with 2nd argument not image", "(star 1 2 3)", - 'star: expects a style as 2nd argument, but given: 2; other arguments were: 1 3'); + 'star: expects a style ("solid" or "outline") as 2nd argument, but given: 2; other arguments were: 1 3'); queueErrorTest("star with 3rd argument not colour", "(star 1 \"solid\" add1)", - 'star: expects a color as 3rd argument, but given: #; other arguments were: 1 "solid"'); + 'star: expects a color as 3rd argument, but given: #; other arguments were: 1 "solid"'); //PRIMITIVES['radial-star'] @@ -7023,7 +7024,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("star with 4th argument not style", "(radial-star 5 4 2 \"foo\" 5)", - 'radial-star: expects a style as 4th argument, but given: "foo"; other arguments were: 5 4 2 5'); + 'radial-star: expects a style ("solid" or "outline") as 4th argument, but given: "foo"; other arguments were: 5 4 2 5'); queueErrorTest("star with 5th argument not colour", "(radial-star 5 4 2 \"solid\" \"foo\")", @@ -7045,7 +7046,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("star with 3rd argument not style", "(nw:rectangle 2 5 add1 4)", - 'nw:rectangle: expects a style as 3rd argument, but given: #; other arguments were: 2 5 4'); + 'nw:rectangle: expects a style ("solid" or "outline") as 3rd argument, but given: #; other arguments were: 2 5 4'); queueErrorTest("star with 4th argument not colour", "(nw:rectangle 2 5 \"outline\" \"focus\")", @@ -7067,7 +7068,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("rectangle with 3rd argument not style", "(rectangle 2 5 add1 4)", - 'rectangle: expects a style as 3rd argument, but given: #; other arguments were: 2 5 4'); + 'rectangle: expects a style ("solid" or "outline") as 3rd argument, but given: #; other arguments were: 2 5 4'); queueErrorTest("rectangle with 4th argument not colour", "(rectangle 2 5 \"outline\" \"focus\")", @@ -7089,7 +7090,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("regular-polygon with 3rd argument not style", "(regular-polygon 2 5 add1 4)", - 'regular-polygon: expects a style as 3rd argument, but given: #; other arguments were: 2 5 4'); + 'regular-polygon: expects a style ("solid" or "outline") as 3rd argument, but given: #; other arguments were: 2 5 4'); queueErrorTest("regular-polygonwith 4th argument not colour", "(regular-polygon 2 5 \"outline\" \"focus\")", @@ -7111,11 +7112,11 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("star-polygon with 3rd argument not positive integer greater than or equal to 1", "(star-polygon 2 5 add1 4 5)", - 'star-polygon: expects a positive integer greater than or equal to 1 as 3rd argument, but given: #; other arguments were: 2 5 4 5'); + 'star-polygon: expects a positive integer greater than or equal to 1 as 3rd argument, but given: #; other arguments were: 2 5 4 5'); queueErrorTest("star-polygon with 4th argument not style", "(star-polygon 2 5 5 add1 5)", - 'star-polygon: expects a style as 4th argument, but given: #; other arguments were: 2 5 5 5'); + 'star-polygon: expects a style ("solid" or "outline") as 4th argument, but given: #; other arguments were: 2 5 5 5'); queueErrorTest("star-polygon with 5th argument not colour", "(star-polygon 2 5 5 \"outline\" \"focus\")", @@ -7137,7 +7138,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("rhombus with 3rd argument not style", "(rhombus 2 5 add1 4)", - 'rhombus: expects a style as 3rd argument, but given: #; other arguments were: 2 5 4'); + 'rhombus: expects a style ("solid" or "outline") as 3rd argument, but given: #; other arguments were: 2 5 4'); queueErrorTest("rhombus with 4th argument not colour", "(rhombus 2 5 \"outline\" \"focus\")", @@ -7156,7 +7157,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("square with 2nd argument not style", "(square 2 add1 4)", - 'square: expects a style as 2nd argument, but given: #; other arguments were: 2 4'); + 'square: expects a style ("solid" or "outline") as 2nd argument, but given: #; other arguments were: 2 4'); queueErrorTest("square with 3rd argument not colour", "(square 2 \"outline\" \"focus\")", @@ -7174,7 +7175,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("triangle with 2nd argument not style", "(triangle 2 add1 4)", - 'triangle: expects a style as 2nd argument, but given: #; other arguments were: 2 4'); + 'triangle: expects a style ("solid" or "outline") as 2nd argument, but given: #; other arguments were: 2 4'); queueErrorTest("triangle with 3rd argument not colour", "(triangle 2 \"outline\" \"focus\")", @@ -7196,7 +7197,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("right-triangle with 3rd argument not style", "(right-triangle 2 4 add1 4)", - 'right-triangle: expects a style as 3rd argument, but given: #; other arguments were: 2 4 4'); + 'right-triangle: expects a style ("solid" or "outline") as 3rd argument, but given: #; other arguments were: 2 4 4'); queueErrorTest("right-triangle with 4th argument not colour", "(right-triangle 5 2 \"outline\" \"focus\")", @@ -7219,7 +7220,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("isosceles-triangle with 3rd argument not style", "(isosceles-triangle 2 4 add1 4)", - 'isosceles-triangle: expects a style as 3rd argument, but given: #; other arguments were: 2 4 4'); + 'isosceles-triangle: expects a style ("solid" or "outline") as 3rd argument, but given: #; other arguments were: 2 4 4'); queueErrorTest("isosceles-triangle with 4th argument not colour", "(isosceles-triangle 5 2 \"outline\" \"focus\")", @@ -7241,7 +7242,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("ellipse with 3rd argument not string", "(ellipse 2 4 add1 4)", - 'ellipse: expects a string as 3rd argument, but given: #; other arguments were: 2 4 4'); + 'ellipse: expects a string as 3rd argument, but given: #; other arguments were: 2 4 4'); queueErrorTest("ellipse with 4th argument not colour", "(ellipse 5 2 \"outline\" \"focus\")", @@ -7263,7 +7264,7 @@ PRIMITIVES['bytes>?'] = ALL DNE */ queueErrorTest("line with 3rd argument not colour", "(line 2 4 add1)", - 'line: expects a color as 3rd argument, but given: #; other arguments were: 2 4'); + 'line: expects a color as 3rd argument, but given: #; other arguments were: 2 4'); //////////////////////////////////////////////////////////////////////